From cbc8b83179adfec9f34fae7b3fd4fb165456bc67 Mon Sep 17 00:00:00 2001 From: Dominic Pelini Date: Fri, 7 Nov 2025 06:53:02 -0700 Subject: [PATCH 01/31] Add app_id to cluster object --- aerospike_helpers/metrics/__init__.py | 1 + src/main/conversions.c | 10 ++++++++++ test/new_tests/test_metrics.py | 1 + test/standalone/test_ext_metrics_cluster_name.py | 5 ++++- 4 files changed, 16 insertions(+), 1 deletion(-) diff --git a/aerospike_helpers/metrics/__init__.py b/aerospike_helpers/metrics/__init__.py index 133e189aba..c9fa406c2a 100644 --- a/aerospike_helpers/metrics/__init__.py +++ b/aerospike_helpers/metrics/__init__.py @@ -105,6 +105,7 @@ class Cluster: Attributes: cluster_name (Optional[str]): Expected cluster name for all nodes. May be :py:obj:`None`. + app_id (Optional[str]): Application identifier. May be :py:obj:`None`. invalid_node_count (int): Count of add node failures in the most recent cluster tend iteration. command_count (int): Command count. The value is cumulative and not reset per metrics interval. retry_count (int): Command retry count. There can be multiple retries for a single command. diff --git a/src/main/conversions.c b/src/main/conversions.c index 0360b70994..c2cfdfc178 100644 --- a/src/main/conversions.c +++ b/src/main/conversions.c @@ -1052,6 +1052,16 @@ PyObject *create_py_cluster_from_as_cluster(as_error *error_p, PyObject_SetAttrString(py_cluster, "cluster_name", Py_None); } + // App Id is optional (declared in client config) + if (cluster->app_id) { + PyObject *py_app_id = PyUnicode_FromString(cluster->app_id); + PyObject_SetAttrString(py_app_id, "app_id", py_app_id); + Py_DECREF(py_app_id); + } + else { + PyObject_SetAttrString(py_cluster, "app_id", Py_None); + } + PyObject *py_invalid_node_count = PyLong_FromUnsignedLong(cluster->invalid_node_count); PyObject_SetAttrString(py_cluster, "invalid_node_count", diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 8af2775e55..91b13559fb 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -194,6 +194,7 @@ def test_setting_metrics_policy_custom_settings(self): assert type(cluster.command_count) == int assert type(cluster.retry_count) == int assert type(cluster.nodes) == list + assert cluster.app_id is None or type(cluster.app_id) == str # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node diff --git a/test/standalone/test_ext_metrics_cluster_name.py b/test/standalone/test_ext_metrics_cluster_name.py index b95af360b0..d7cc3abec1 100644 --- a/test/standalone/test_ext_metrics_cluster_name.py +++ b/test/standalone/test_ext_metrics_cluster_name.py @@ -18,7 +18,8 @@ "hosts": [ ("127.0.0.1", 3000) ], - "cluster_name": "docker" + "cluster_name": "docker", + "app_id": "PythonClientTest" } print("Connecting to server...") as_client = aerospike.client(config) @@ -35,12 +36,14 @@ def snapshot(cluster: Cluster): global snapshot_triggered snapshot_triggered = True assert cluster.cluster_name == "docker" + assert cluster.app_id == "PythonClientTest" def disable(cluster: Cluster): print(f"Disable listener run. Cluster name: {cluster.cluster_name}") global disable_triggered disable_triggered = True assert cluster.cluster_name == "docker" + assert cluster.app_id == "PythonClientTest" def node_close(_: Node): pass From 846518af987af0ee7f195a8995ae2b4707267a57 Mon Sep 17 00:00:00 2001 From: Dominic Pelini Date: Fri, 14 Nov 2025 10:50:28 -0700 Subject: [PATCH 02/31] Fix bug when setting app_id attribute --- src/main/conversions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/conversions.c b/src/main/conversions.c index c2cfdfc178..c3c70fa88a 100644 --- a/src/main/conversions.c +++ b/src/main/conversions.c @@ -1055,7 +1055,7 @@ PyObject *create_py_cluster_from_as_cluster(as_error *error_p, // App Id is optional (declared in client config) if (cluster->app_id) { PyObject *py_app_id = PyUnicode_FromString(cluster->app_id); - PyObject_SetAttrString(py_app_id, "app_id", py_app_id); + PyObject_SetAttrString(py_cluster, "app_id", py_app_id); Py_DECREF(py_app_id); } else { From b8d94dc2d3653e3a1fa8000e149e8df4e2b28f35 Mon Sep 17 00:00:00 2001 From: Dominic Pelini Date: Thu, 20 Nov 2025 08:35:19 -0700 Subject: [PATCH 03/31] Added suppressions --- .github/workflows/valgrind.yml | 2 +- test/full_suite.supp | 596079 ++++++++++++++++++++++++++++++ 2 files changed, 596080 insertions(+), 1 deletion(-) create mode 100644 test/full_suite.supp diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml index 44c390a7a5..5881b1bce0 100644 --- a/.github/workflows/valgrind.yml +++ b/.github/workflows/valgrind.yml @@ -166,7 +166,7 @@ jobs: - run: echo VALGRIND_ARGS="--tool=massif --massif-out-file=./${{ env.MASSIF_REPORT_FILE_NAME }}" >> $GITHUB_ENV if: ${{ inputs.massif }} - - run: echo VALGRIND_ARGS="--leak-check=full" >> $GITHUB_ENV + - run: echo VALGRIND_ARGS="--leak-check=full --gen-suppressions=all --suppressions=full_suite.supp --num-callers=350 " >> $GITHUB_ENV if: ${{ !inputs.massif }} - run: PYTHONMALLOC=malloc valgrind --error-exitcode=1 ${{ env.VALGRIND_ARGS }} python3 -m pytest -v new_tests/${{ github.event.inputs.test-file }} diff --git a/test/full_suite.supp b/test/full_suite.supp new file mode 100644 index 0000000000..599d8d8313 --- /dev/null +++ b/test/full_suite.supp @@ -0,0 +1,596079 @@ +# +# This is a valgrind suppression file that should be used when using valgrind. +# +# Here's an example of running valgrind: +# +# cd python/dist/src +# valgrind --tool=memcheck --suppressions=Misc/valgrind-python.supp \ +# ./python -E -tt ./Lib/test/regrtest.py -u bsddb,network +# +# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER +# to use the preferred suppressions with Py_ADDRESS_IN_RANGE. +# +# If you do not want to recompile Python, you can uncomment +# suppressions for PyObject_Free and PyObject_Realloc. +# +# See Misc/README.valgrind for more information. + +# all tool names: Addrcheck,Memcheck,cachegrind,helgrind,massif +{ + ADDRESS_IN_RANGE/Invalid read of size 4 + Memcheck:Addr4 + fun:Py_ADDRESS_IN_RANGE +} + +{ + ADDRESS_IN_RANGE/Invalid read of size 4 + Memcheck:Value4 + fun:Py_ADDRESS_IN_RANGE +} + +{ + ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64) + Memcheck:Value8 + fun:Py_ADDRESS_IN_RANGE +} + +{ + ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value + Memcheck:Cond + fun:Py_ADDRESS_IN_RANGE +} + +# +# Leaks (including possible leaks) +# Hmmm, I wonder if this masks some real leaks. I think it does. +# Will need to fix that. +# + +{ + Suppress leaking the GIL. Happens once per process, see comment in ceval.c. + Memcheck:Leak + fun:malloc + fun:PyThread_allocate_lock + fun:PyEval_InitThreads +} + +{ + Suppress leaking the GIL after a fork. + Memcheck:Leak + fun:malloc + fun:PyThread_allocate_lock + fun:PyEval_ReInitThreads +} + +{ + Suppress leaking the autoTLSkey. This looks like it shouldn't leak though. + Memcheck:Leak + fun:malloc + fun:PyThread_create_key + fun:_PyGILState_Init + fun:Py_InitializeEx + fun:Py_Main +} + +{ + Hmmm, is this a real leak or like the GIL? + Memcheck:Leak + fun:malloc + fun:PyThread_ReInitTLS +} + +{ + Handle PyMalloc confusing valgrind (possibly leaked) + Memcheck:Leak + fun:realloc + fun:_PyObject_GC_Resize + fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING +} + +{ + Handle PyMalloc confusing valgrind (possibly leaked) + Memcheck:Leak + fun:malloc + fun:_PyObject_GC_New + fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING +} + +{ + Handle PyMalloc confusing valgrind (possibly leaked) + Memcheck:Leak + fun:malloc + fun:_PyObject_GC_NewVar + fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING +} + +# +# Non-python specific leaks +# + +{ + Handle pthread issue (possibly leaked) + Memcheck:Leak + fun:calloc + fun:allocate_dtv + fun:_dl_allocate_tls_storage + fun:_dl_allocate_tls +} + +{ + Handle pthread issue (possibly leaked) + Memcheck:Leak + fun:memalign + fun:_dl_allocate_tls_storage + fun:_dl_allocate_tls +} + +###{ +### ADDRESS_IN_RANGE/Invalid read of size 4 +### Memcheck:Addr4 +### fun:PyObject_Free +###} +### +###{ +### ADDRESS_IN_RANGE/Invalid read of size 4 +### Memcheck:Value4 +### fun:PyObject_Free +###} +### +###{ +### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value +### Memcheck:Cond +### fun:PyObject_Free +###} + +###{ +### ADDRESS_IN_RANGE/Invalid read of size 4 +### Memcheck:Addr4 +### fun:PyObject_Realloc +###} +### +###{ +### ADDRESS_IN_RANGE/Invalid read of size 4 +### Memcheck:Value4 +### fun:PyObject_Realloc +###} +### +###{ +### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value +### Memcheck:Cond +### fun:PyObject_Realloc +###} + +### +### All the suppressions below are for errors that occur within libraries +### that Python uses. The problems to not appear to be related to Python's +### use of the libraries. +### + +{ + Generic ubuntu ld problems + Memcheck:Addr8 + obj:/lib/ld-2.4.so + obj:/lib/ld-2.4.so + obj:/lib/ld-2.4.so + obj:/lib/ld-2.4.so +} + +{ + Generic gentoo ld problems + Memcheck:Cond + obj:/lib/ld-2.3.4.so + obj:/lib/ld-2.3.4.so + obj:/lib/ld-2.3.4.so + obj:/lib/ld-2.3.4.so +} + +{ + DBM problems, see test_dbm + Memcheck:Param + write(buf) + fun:write + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + fun:dbm_close +} + +{ + DBM problems, see test_dbm + Memcheck:Value8 + fun:memmove + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + fun:dbm_store + fun:dbm_ass_sub +} + +{ + DBM problems, see test_dbm + Memcheck:Cond + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + fun:dbm_store + fun:dbm_ass_sub +} + +{ + DBM problems, see test_dbm + Memcheck:Cond + fun:memmove + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + obj:/usr/lib/libdb1.so.2 + fun:dbm_store + fun:dbm_ass_sub +} + +{ + GDBM problems, see test_gdbm + Memcheck:Param + write(buf) + fun:write + fun:gdbm_open + +} + +{ + ZLIB problems, see test_gzip + Memcheck:Cond + obj:/lib/libz.so.1.2.3 + obj:/lib/libz.so.1.2.3 + fun:deflate +} + +{ + Avoid problems w/readline doing a putenv and leaking on exit + Memcheck:Leak + fun:malloc + fun:xmalloc + fun:sh_set_lines_and_columns + fun:_rl_get_screen_size + fun:_rl_init_terminal_io + obj:/lib/libreadline.so.4.3 + fun:rl_initialize +} + +### +### These occur from somewhere within the SSL, when running +### test_socket_sll. They are too general to leave on by default. +### +###{ +### somewhere in SSL stuff +### Memcheck:Cond +### fun:memset +###} +###{ +### somewhere in SSL stuff +### Memcheck:Value4 +### fun:memset +###} +### +###{ +### somewhere in SSL stuff +### Memcheck:Cond +### fun:MD5_Update +###} +### +###{ +### somewhere in SSL stuff +### Memcheck:Value4 +### fun:MD5_Update +###} + +# +# All of these problems come from using test_socket_ssl +# +{ + from test_socket_ssl + Memcheck:Cond + fun:BN_bin2bn +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:BN_num_bits_word +} + +{ + from test_socket_ssl + Memcheck:Value4 + fun:BN_num_bits_word +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:BN_mod_exp_mont_word +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:BN_mod_exp_mont +} + +{ + from test_socket_ssl + Memcheck:Param + write(buf) + fun:write + obj:/usr/lib/libcrypto.so.0.9.7 +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:RSA_verify +} + +{ + from test_socket_ssl + Memcheck:Value4 + fun:RSA_verify +} + +{ + from test_socket_ssl + Memcheck:Value4 + fun:DES_set_key_unchecked +} + +{ + from test_socket_ssl + Memcheck:Value4 + fun:DES_encrypt2 +} + +{ + from test_socket_ssl + Memcheck:Cond + obj:/usr/lib/libssl.so.0.9.7 +} + +{ + from test_socket_ssl + Memcheck:Value4 + obj:/usr/lib/libssl.so.0.9.7 +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:BUF_MEM_grow_clean +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:memcpy + fun:ssl3_read_bytes +} + +{ + from test_socket_ssl + Memcheck:Cond + fun:SHA1_Update +} + +{ + from test_socket_ssl + Memcheck:Value4 + fun:SHA1_Update +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:PyUnicode_New + fun:unicode_repeat + fun:unicode_repeat + fun:safe_multiply + fun:fold_binop + fun:astfold_expr + fun:astfold_expr + fun:astfold_keyword + fun:astfold_expr + fun:astfold_stmt + fun:astfold_body + fun:astfold_stmt + fun:astfold_body + fun:astfold_stmt + fun:astfold_body + fun:astfold_mod + fun:_PyAST_Optimize + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLongLong + fun:long_mul + fun:long_pow + fun:ternary_op + fun:PyNumber_Power + fun:safe_power + fun:fold_binop + fun:astfold_expr + fun:astfold_expr + fun:astfold_stmt + fun:astfold_body + fun:astfold_stmt + fun:astfold_body + fun:astfold_mod + fun:_PyAST_Optimize + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyLong_New + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_withitem + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:codec_makeincrementalcodec + fun:_textiowrapper_set_decoder + fun:_textiowrapper_set_decoder + fun:_io_TextIOWrapper___init___impl + fun:_io_TextIOWrapper___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:builtin_getattr + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:slot_tp_hash + fun:dict_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:slot_tp_richcompare + fun:unsafe_object_compare + fun:binarysort + fun:list_sort_impl + fun:list_sort + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_io_IncrementalNewlineDecoder_reset_impl + fun:_io_IncrementalNewlineDecoder_reset + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_textiowrapper_decoder_setstate.isra.0 + fun:_io_TextIOWrapper_seek_impl + fun:_io_TextIOWrapper_seek + fun:method_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:calloc + fun:_PyCode_InitOpcache + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:fill_time + fun:_pystat_fromstructstat + fun:posix_do_stat.constprop.0 + fun:os_stat_impl + fun:os_stat + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyFloat_FromDouble + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyThread_allocate_lock + fun:rlock_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyThread_allocate_lock + fun:rlock_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:create_timezone + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:new_date_ex + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:new_delta_ex + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:rlock_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:rlock_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:s_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:calcsize + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyType_GenericAlloc + fun:s_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:pack + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:PyUnicode_Append + fun:unicode_concatenate + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_str + fun:PyObject_Str + fun:PyObject_Str + fun:unicode_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:slot_tp_repr + fun:PyObject_Repr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:PyUnicode_Append + fun:unicode_concatenate + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:PyUnicode_Append + fun:unicode_concatenate + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromASCII + fun:asciilib_rpartition + fun:PyUnicode_RPartition + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromASCII + fun:asciilib_rpartition + fun:PyUnicode_RPartition + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromASCII + fun:asciilib_split_whitespace + fun:split + fun:unicode_split_impl + fun:unicode_split + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:run_eval_code_obj + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:run_eval_code_obj + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:run_eval_code_obj + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyIO_get_locale_module.cold + fun:_io_TextIOWrapper___init___impl + fun:_io_TextIOWrapper___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:_PyUnicode_JoinArray + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:ascii_upper_or_lower + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_VectorcallMethodId + fun:_PyObject_CallMethodIdNoArgs + fun:module_register_converter + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromASCII + fun:_PyUnicode_FromASCII + fun:unicode_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:_PyUnicode_FromUCS1 + fun:PyUnicode_FromKindAndData + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:unicode_char + fun:PyUnicode_FromOrdinal + fun:unicodeiter_next + fun:PyIter_Next + fun:set_update_internal + fun:make_new_set + fun:make_new_frozenset + fun:frozenset_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:unicode_char + fun:PyUnicode_FromOrdinal + fun:unicodeiter_next + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:unicode_char + fun:unicode_getitem + fun:unicode_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:get_latin1_char + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId + fun:create_stdio.isra.0 + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyContextVar_New + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyInit__imp + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:all_ins + fun:posixmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:init_timezone + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddType + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:_PyWarnings_Init + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:_locale_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyIO_get_locale_module.cold + fun:_io_TextIOWrapper___init___impl + fun:_io_TextIOWrapper___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:init_timezone + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:math_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:posixmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:setup_confname_tables + fun:posixmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:weakref_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PyBuiltins_AddExceptions + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PyImportHooks_Init + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PySys_InitMain + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:_PySys_SetPreliminaryStderr + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyDict_SetItemString + fun:initialize_structseq_dict.isra.0 + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeInfiniteObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeKeyOrderedDict_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeNullObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:AerospikeWildcardObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyInit__imp + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyInit_gc + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyMarshal_Init + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PyWarnings_Init + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:_PyImport_FixupBuiltin + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:_PyImport_FixupBuiltin + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:_PyTypes_InitSlotDefs + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewGetSet + fun:init_handler_descrs + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_zlib + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyStructSequence_NewType + fun:posixmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:PyUnicode_InternFromString + fun:init_identifiers + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_join_names_with_dot + fun:dotted_name_raw + fun:dotted_name_rule + fun:import_from_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:atom_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:_tmp_148_rule + fun:_loop0_117_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:dotted_name_raw + fun:dotted_name_rule + fun:dotted_as_name_rule + fun:_gather_36_rule + fun:dotted_as_names_rule + fun:import_name_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:dotted_name_raw + fun:dotted_name_rule + fun:import_from_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:import_from_as_name_rule + fun:_gather_33_rule + fun:import_from_as_names_rule + fun:import_from_targets_rule + fun:import_from_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:import_from_as_name_rule + fun:_gather_33_rule + fun:import_from_as_names_rule + fun:import_from_targets_rule + fun:import_from_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:import_from_as_name_rule + fun:_loop0_34_rule + fun:_gather_33_rule + fun:import_from_as_names_rule + fun:import_from_targets_rule + fun:import_from_rule + fun:import_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:lambda_param_rule + fun:lambda_param_no_default_rule + fun:_loop1_80_rule + fun:lambda_slash_no_default_rule + fun:lambda_parameters_rule + fun:lambda_params_rule + fun:lambdef_rule + fun:expression_rule + fun:expressions_rule + fun:eval_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:param_rule + fun:param_no_default_rule + fun:_loop1_60_rule + fun:slash_no_default_rule + fun:parameters_rule + fun:params_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:param_rule + fun:param_no_default_rule + fun:_loop1_60_rule + fun:slash_no_default_rule + fun:parameters_rule + fun:params_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:param_rule + fun:param_no_default_rule + fun:_loop1_60_rule + fun:slash_no_default_rule + fun:parameters_rule + fun:params_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:param_rule + fun:param_with_default_rule + fun:_loop1_63_rule + fun:slash_with_default_rule + fun:parameters_rule + fun:params_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:_tmp_99_rule + fun:tuple_rule + fun:_tmp_95_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:except_block_rule + fun:_loop1_48_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_loop0_72_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:_tmp_99_rule + fun:tuple_rule + fun:_tmp_95_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:except_block_rule + fun:_loop1_48_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:while_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:try_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:kwarg_or_starred_rule + fun:_gather_109_rule + fun:kwargs_rule + fun:args_rule + fun:arguments_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:star_expression_rule + fun:star_expressions_rule + fun:return_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:_tmp_147_rule + fun:_loop0_107_rule + fun:_gather_106_rule + fun:args_rule + fun:arguments_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:_loop0_13_rule + fun:_gather_12_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:list_rule + fun:_tmp_96_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:_tmp_99_rule + fun:tuple_rule + fun:_tmp_95_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_loop0_72_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:list_rule + fun:_tmp_96_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:_tmp_147_rule + fun:_loop0_107_rule + fun:_gather_106_rule + fun:args_rule + fun:arguments_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:_tmp_140_rule + fun:_loop1_68_rule + fun:decorators_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:raise_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:single_subscript_attribute_target_rule + fun:_tmp_20_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:_tmp_99_rule + fun:tuple_rule + fun:_tmp_95_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:star_expression_rule + fun:star_expressions_rule + fun:return_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:star_named_expression_rule + fun:_loop0_72_rule + fun:_gather_71_rule + fun:star_named_expressions_rule + fun:_tmp_99_rule + fun:tuple_rule + fun:_tmp_95_rule + fun:atom_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:star_expression_rule + fun:star_expressions_rule + fun:return_stmt_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:_PyDict_GetItemIdWithError + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:_PyDict_SetItemId + fun:_PySys_SetPreliminaryStderr + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:_PyDict_SetItemId + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:_PyDict_SetItemId + fun:module_init_dict + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:_PyObject_SetAttrId + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:_PyUnicode_FromId + fun:create_filter + fun:init_filters + fun:warnings_init_state + fun:_PyWarnings_InitState + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkdict + fun:do_mkvalue + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:PyUnicode_New + fun:unicode_decode_utf8 + fun:do_mktuple + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:PyCode_Optimize + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:PyCode_Optimize + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:PyCode_Optimize + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:PyCode_Optimize + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:PyCode_Optimize + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:Struct___init___impl + fun:Struct___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:calcsize + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:Struct___init___impl + fun:Struct___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:pack + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:_PyPegen_fill_token + fun:_PyPegen_expect_token + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:in_bitwise_or_rule + fun:compare_op_bitwise_or_pair_rule + fun:_loop1_90_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:if_stmt_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:run_eval_code_obj + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:_PyPegen_fill_token + fun:_PyPegen_expect_token + fun:t_lookahead_rule + fun:_PyPegen_lookahead + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:_loop0_13_rule + fun:_gather_12_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:_PyPegen_parsestr + fun:_PyPegen_concatenate_strings + fun:strings_rule + fun:atom_rule + fun:primary_raw + fun:primary_rule + fun:await_primary_rule + fun:power_rule + fun:factor_rule + fun:term_raw + fun:term_rule + fun:sum_raw + fun:sum_rule + fun:shift_expr_raw + fun:shift_expr_rule + fun:bitwise_and_raw + fun:bitwise_and_rule + fun:bitwise_xor_raw + fun:bitwise_xor_rule + fun:bitwise_or_raw + fun:bitwise_or_rule + fun:comparison_rule + fun:inversion_rule + fun:conjunction_rule + fun:disjunction_rule + fun:expression_rule + fun:named_expression_rule + fun:genexp_rule + fun:t_primary_raw + fun:t_primary_rule + fun:target_with_star_atom_rule + fun:star_target_rule + fun:star_targets_rule + fun:_tmp_137_rule + fun:_loop1_22_rule + fun:assignment_rule + fun:small_stmt_rule + fun:simple_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:do_mkvalue + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId + fun:get_encoded_name + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyBytes_FromSize + fun:PyBytes_FromStringAndSize + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromLong + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeConfigProvider_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeInfiniteObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeKeyOrderedDict_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeNullObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:AerospikeWildcardObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:pysqlite_cache_setup_types + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:PyLong_FromUnsignedLong + fun:PyLong_FromUnsignedLong + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:long_lshift1 + fun:long_lshift + fun:binary_op1 + fun:binary_op + fun:PyNumber_Lshift + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:r_PyLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:r_PyLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyLong_New + fun:r_PyLong + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyClassMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyStaticMethod_New + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:property_copy + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:property_copy + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:context_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:PyType_GenericNew + fun:type_call + fun:_PyObject_MakeTpCall + fun:context_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:abc_data_new + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:abc_data_new + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:abc_data_new + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:abc_data_new + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewClassMethod + fun:add_methods + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:AerospikeConfigProvider_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewGetSet + fun:init_handler_descrs + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMember + fun:add_members + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewMethod + fun:add_methods + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeKeyOrderedDict_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:descr_new + fun:PyDescr_NewWrapper + fun:add_operators + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:long_subtype_new + fun:long_new_impl + fun:long_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:long_subtype_new + fun:long_new_impl + fun:long_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_and + fun:binary_op1 + fun:binary_op + fun:PyNumber_And + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:long_subtype_new + fun:long_new_impl + fun:long_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:long_subtype_new + fun:long_new_impl + fun:long_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:long_subtype_new + fun:long_new_impl + fun:long_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:PySet_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:make_new_set + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:object_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:tuple_subtype_new + fun:tuple_new_impl + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:tuple_subtype_new + fun:tuple_new_impl + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:tuplegetter_new_impl + fun:tuplegetter_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:weakref___new__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:weakref___new__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:PyType_GenericAlloc + fun:weakref___new__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:builtin_issubclass_impl + fun:builtin_issubclass + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:builtin_issubclass_impl + fun:builtin_issubclass + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeConfigProvider_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeInfiniteObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeNullObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:AerospikeWildcardObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:pysqlite_cache_setup_types + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCMethod_New + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyCell_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:run_eval_code_obj + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyFunction_NewWithQualName + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:PySequence_List + fun:type_mro_impl + fun:type_mro + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:PySequence_List + fun:type_mro_impl + fun:type_mro + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:_PyGC_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:_posix_listdir + fun:os_listdir_impl + fun:os_listdir + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_withitem + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:dict_keys + fun:PyDict_Keys + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyList_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:contextvar_new + fun:PyContextVar_New + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyModule_NewObject + fun:import_add_module + fun:module_dict_for_exec + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyObject_GenericGetDict + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:PyUnicode_InternInPlace + fun:PyUnicode_InternFromString + fun:_PyTypes_InitSlotDefs + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_setattro + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_setattro + fun:PyObject_SetAttr + fun:builtin_setattr_impl + fun:builtin_setattr + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:_PyStack_AsDict + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:compiler_init + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:do_mkdict + fun:do_mkvalue + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:list2dict + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:list2dict + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:list2dict + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:list2dict + fun:compiler_enter_scope + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:make_impl_info + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_handle_comprehension + fun:symtable_visit_listcomp + fun:symtable_visit_expr + fun:symtable_visit_expr + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:ste_new + fun:symtable_enter_block + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:symtable_new + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:symtable_new + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:PyDict_New + fun:warnings_init_state + fun:_PyWarnings_InitState + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_dict + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:builtin_issubclass_impl + fun:builtin_issubclass + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:builtin_issubclass_impl + fun:builtin_issubclass + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_instancecheck_impl + fun:_abc__abc_instancecheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeConfigProvider_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeInfiniteObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeKeyOrderedDict_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeNullObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:AerospikeWildcardObject_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:pysqlite_cache_setup_types + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_New + fun:new_weakref + fun:PyWeakref_NewRef + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:handle_weakrefs + fun:collect + fun:_PyGC_CollectNoFail + fun:Py_FinalizeEx + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:list_sort_impl + fun:list_sort + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_setattro + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:slot_tp_iter + fun:PyObject_GetIter + fun:list_extend + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallMethodObjArgs + fun:AerospikeGeospatial_DoLoads + fun:AerospikeGeospatial_Type_Init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:slot_tp_hash + fun:PyDict_SetItem + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:handle_weakrefs + fun:collect + fun:_PyGC_CollectNoFail + fun:Py_FinalizeEx + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_ass_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_io_IncrementalNewlineDecoder_reset_impl + fun:_io_IncrementalNewlineDecoder_reset + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_textiowrapper_decoder_setstate.isra.0 + fun:_io_TextIOWrapper_seek_impl + fun:_io_TextIOWrapper_seek + fun:method_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_gen_throw + fun:gen_throw + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_io_IncrementalNewlineDecoder_reset_impl + fun:_io_IncrementalNewlineDecoder_reset + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_textiowrapper_decoder_setstate.isra.0 + fun:_io_TextIOWrapper_seek_impl + fun:_io_TextIOWrapper_seek + fun:method_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:PyObject_CallMethodNoArgs + fun:_textiowrapper_encoder_reset + fun:_textiowrapper_encoder_setstate + fun:_io_TextIOWrapper_seek_impl + fun:_io_TextIOWrapper_seek + fun:method_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_recursive_isinstance + fun:object_recursive_isinstance + fun:PyObject_IsInstance + fun:builtin_isinstance_impl + fun:builtin_isinstance + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:builtin_next + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_attribute + fun:slot_tp_getattr_hook + fun:_PyObject_LookupAttr + fun:builtin_getattr + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:property_descr_set + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:property_descr_set + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:slot_sq_contains + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:slot_sq_contains + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_sq_length + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_comprehension + fun:compiler_listcomp + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_for + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_return + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_from_import + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_subdict + fun:compiler_dict + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_subdict + fun:compiler_dict + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:starunpack_helper + fun:compiler_tuple + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:starunpack_helper + fun:compiler_tuple + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:starunpack_helper + fun:compiler_tuple + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:maybe_optimize_method_call + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_decorators + fun:compiler_decorators + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:list_sort_impl + fun:list_sort + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:_PyStack_UnpackDict + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:add_attributes + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dict_keys_inorder + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dict_keys_inorder + fun:makecode + fun:assemble + fun:compiler_comprehension + fun:compiler_listcomp + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dict_keys_inorder + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dict_keys_inorder + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dictiter_iternextitem + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:dictiter_iternextitem + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:do_mktuple + fun:do_mkstack + fun:va_build_stack + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:long_divmod + fun:binary_op1 + fun:binary_op + fun:PyNumber_Divmod + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:long_divmod + fun:binary_op1 + fun:binary_op + fun:PyNumber_Divmod + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:make_const_tuple + fun:fold_tuple + fun:astfold_expr + fun:astfold_expr + fun:astfold_expr + fun:astfold_stmt + fun:astfold_stmt + fun:astfold_body + fun:astfold_stmt + fun:astfold_body + fun:astfold_stmt + fun:astfold_body + fun:astfold_mod + fun:_PyAST_Optimize + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:type_mro_impl + fun:type_mro + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:type_mro_impl + fun:type_mro + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:type_mro_impl + fun:type_mro + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:mro_implementation + fun:type_mro_impl + fun:type_mro + fun:method_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:parser_init.part.0 + fun:parser_init + fun:_PyArg_UnpackKeywords + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_FromModuleAndSpec + fun:_abcmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_FromModuleAndSpec + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_visit_stmt_expr + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:maybe_optimize_method_call + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyCode_ConstantKey + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:starunpack_helper + fun:compiler_tuple + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:_PyErr_SetKeyError + fun:_PyDict_DelItem_KnownHash + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:create_filter + fun:init_filters + fun:warnings_init_state + fun:_PyWarnings_InitState + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:dictiter_new + fun:dictitems_iter + fun:PyObject_GetIter + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_keyword + fun:compiler_call_helper + fun:compiler_visit_expr + fun:compiler_with + fun:compiler_try_finally + fun:compiler_try + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:merge_consts_recursive + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:maybe_optimize_method_call + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt_expr + fun:compiler_visit_stmt + fun:compiler_try_except + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_Pack + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:PySequence_Tuple + fun:mro_invoke + fun:mro_internal + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:_PyErr_CreateException + fun:_PyErr_NormalizeException + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:call_attribute + fun:slot_tp_getattr_hook + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:call_unbound_noarg + fun:slot_tp_iter + fun:PyObject_GetIter + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:call_attribute + fun:slot_tp_getattr_hook + fun:_PyObject_GetMethod + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_and + fun:binary_op1 + fun:binary_op + fun:PyNumber_And + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:call_attribute + fun:slot_tp_getattr_hook + fun:_PyObject_GetMethod + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_FastCallTstate + fun:_PyObject_FastCall + fun:init_subclass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:PyObject_CallFunctionObjArgs + fun:property_copy + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:method_vectorcall_VARARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:PyIter_Next + fun:min_max + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:tupleslice + fun:PyTuple_GetSlice + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:_PyTuple_FromArray + fun:tupleslice + fun:PyTuple_GetSlice + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:makecode + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:PyMarshal_ReadObjectFromString + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:PyCode_NewWithPosOnlyArgs + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_New + fun:get_token_missing + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_NewVar + fun:_sre_compile_impl + fun:_sre_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_NewVar + fun:_sre_compile_impl + fun:_sre_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_NewVar + fun:_sre_compile_impl + fun:_sre_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:atexit_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:partial_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__socket + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:clone_combined_dict + fun:PyDict_Copy + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:datetime_alloc + fun:new_datetime_ex2 + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:list_resize + fun:list_resize + fun:list_extend + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:list_resize + fun:list_resize + fun:list_extend + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:list_resize + fun:list_resize + fun:list_extend + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:make_keys_shared + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:make_keys_shared + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:make_keys_shared + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:make_keys_shared + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_dict_with_shared_keys + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewKeysForClass + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewPresized + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewPresized + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewPresized + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:_PyDict_NewPresized + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyDict_FromKeys + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_FastCallDictTstate + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:PyDict_Copy + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:dict_merge + fun:_PyImport_Cleanup + fun:Py_FinalizeEx + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:PyDict_SetDefault + fun:PyUnicode_InternInPlace + fun:_PyPegen_new_identifier + fun:_PyPegen_name_token + fun:function_def_raw_rule + fun:function_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:block_rule + fun:class_def_raw_rule + fun:class_def_rule + fun:compound_stmt_rule + fun:statement_rule + fun:_loop1_11_rule + fun:statements_rule + fun:file_rule + fun:_PyPegen_parse + fun:_PyPegen_run_parser + fun:_PyPegen_run_parser_from_string + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:PyDict_SetDefault + fun:dict_setdefault_impl + fun:dict_setdefault + fun:method_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_or + fun:binary_op1 + fun:binary_op + fun:PyNumber_Or + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:PyInit__blake2 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:PyModule_AddIntConstant + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:PyModule_AddObject + fun:weakref_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:initialize_structseq_dict.isra.0 + fun:PyStructSequence_InitType2 + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:initialize_structseq_dict.isra.0 + fun:PyStructSequence_InitType2 + fun:_PyErr_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:initialize_structseq_dict.isra.0 + fun:PyStructSequence_InitType2 + fun:_PyLong_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyDict_SetItemString + fun:initialize_structseq_dict.isra.0 + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyInit__thread + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyModule_AddType + fun:operator_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyInit__signal + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:signal_install_handlers + fun:_PySignal_Init + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit_select + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:PyObject_LengthHint + fun:PyObject_LengthHint + fun:list_extend + fun:PySequence_List + fun:method_output_as_list + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyIO_get_locale_module.cold + fun:_io_TextIOWrapper___init___impl + fun:_io_TextIOWrapper___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallNoArg + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_maybe.constprop.0 + fun:slot_nb_and + fun:binary_op1 + fun:binary_op + fun:PyNumber_And + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_arg + fun:ast2obj_arg + fun:ast2obj_list + fun:ast2obj_arguments + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_arguments + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_comprehension + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_keyword + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr.cold + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_keyword + fun:ast2obj_list + fun:ast2obj_expr + fun:ast2obj_expr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_stmt + fun:ast2obj_list + fun:ast2obj_stmt.cold + fun:ast2obj_list + fun:ast2obj_mod + fun:PyAST_mod2obj + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObjectDict_SetItem + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:wrap_setattr + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_tp_setattro + fun:PyObject_SetAttr + fun:builtin_setattr_impl + fun:builtin_setattr + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_FromDefAndSpec2 + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:builtin_setattr_impl + fun:builtin_setattr + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:add_ast_fields + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:AerospikeTransaction_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyInit__sha512 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__csv + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:array_modexec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:find_name_in_mro + fun:_PyType_Lookup + fun:_PyType_Lookup + fun:_PyObject_LookupSpecial + fun:set_names + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_getset + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:_bz2_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:PyThread_GetInfo + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PyFloat_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:_PySys_InitCore + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyStructSequence_InitType2 + fun:time_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:_json_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:tracer_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_members + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:AerospikeClient_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:AerospikeGeospatial_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:AerospikeQuery_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:AerospikeScan_Ready + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyInit__pickle + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyInit__sre + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:_functools_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:collections_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:itertoolsmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__random + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:PyType_FromModuleAndSpec + fun:PyInit__struct + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:best_base.cold + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_methods + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_operators + fun:PyType_Ready + fun:type_getattro + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:cm_get___isabstractmethod__ + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_IsAbstract + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyInit_aerospike + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:PyInit__sqlite3 + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:PyObject_SetAttrString + fun:_add_methods_to_object + fun:PyModule_AddFunctions + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:add_tp_new_wrapper + fun:add_operators + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:cache_struct_converter + fun:cache_struct_converter + fun:pack + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:import_all_from + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:init_handler_descrs + fun:PyInit_pyexpat + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyCapsule_Import.cold + fun:PyInit__elementtree + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:type_set_abstractmethods + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dictresize + fun:insertion_resize + fun:insertdict + fun:type_set_abstractmethods + fun:_PyObject_GenericSetAttrWithDict + fun:type_setattro + fun:PyObject_SetAttr + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyDict_SetDefault + fun:PyUnicode_InternInPlace + fun:PyUnicode_InternFromString + fun:_PyTypes_InitSlotDefs + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyDict_SetDefault + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyDict_SetDefault + fun:merge_const_tuple + fun:makecode + fun:assemble + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyDict_SetItemString + fun:metadata_to_pyobject + fun:do_record_to_pyobject + fun:record_to_pyobject + fun:AerospikeClient_Get_Invoke + fun:AerospikeClient_Get + fun:method_vectorcall_VARARGS_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyType_Ready + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:PyType_Ready + fun:PyModuleDef_Init + fun:_PyModule_CreateInitialized + fun:_PySys_Create + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_FileIO___init___impl + fun:_io_FileIO___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:_PyObject_CallFunction_SizeT + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:_PyObject_CallMethodId_SizeT + fun:PyFile_OpenCodeObject + fun:_io_open_code_impl + fun:_io_open_code + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyObject_GenericSetAttrWithDict + fun:PyObject_GenericSetAttr + fun:PyObject_SetAttr + fun:_io_open_impl + fun:_io_open + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyImportZip_Init + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:_PyStack_AsDict + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_methods + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_methods + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyBuiltin_Init + fun:pycore_init_builtins + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyHamt_Init + fun:_PyContext_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:_PyUnicode_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_operators + fun:PyType_Ready + fun:type_getattro + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_VectorcallMethod + fun:_PyObject_CallMethodIdOneArg + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:PyModule_AddType + fun:PyInit__io + fun:_imp_create_builtin + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:_PyExc_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:_PyTypes_Init + fun:pycore_init_types + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:add_subclass + fun:PyType_Ready + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:analyze_name + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:analyze_name + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:analyze_name + fun:analyze_block + fun:analyze_child_block + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:analyze_name + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:analyze_name + fun:analyze_block + fun:symtable_analyze + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_add_const + fun:compiler_addop_load_const + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_add_const + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_add_const + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_add_const + fun:compiler_function + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_add_const + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_addop_name + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_visit_expr + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_decorators + fun:compiler_decorators + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_visit_expr + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_jump_if + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_visit_expr + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_lambda + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_mod + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:compiler_add_o + fun:compiler_add_o + fun:compiler_nameop + fun:compiler_visit_expr + fun:compiler_call + fun:compiler_visit_expr1 + fun:compiler_visit_expr + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:dictbytype + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:list2dict + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_if + fun:compiler_visit_stmt + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:map_to_dict + fun:PyFrame_FastToLocalsWithError + fun:PyEval_GetLocals + fun:builtin_locals_impl + fun:builtin_locals + fun:cfunction_vectorcall_NOARGS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:module_init_dict + fun:PyModule_NewObject + fun:PyModule_New + fun:_PyModule_CreateInitialized + fun:PyInit__imp + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:ste_new + fun:symtable_enter_block + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_alias.isra.0 + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_expr + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:PyIter_Next + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:bounded_lru_cache_wrapper + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:PyObject_GetItem + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_expr + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_expr + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_expr + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_expr + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:run_mod + fun:PyRun_StringFlags + fun:builtin_eval_impl + fun:builtin_eval + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:insert_to_emptydict + fun:symtable_add_def_helper + fun:symtable_add_def + fun:symtable_visit_params + fun:symtable_visit_arguments + fun:symtable_visit_stmt + fun:symtable_visit_stmt + fun:PySymtable_BuildObject + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:prepare_s + fun:Struct___init___impl + fun:Struct___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:calcsize + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:prepare_s + fun:Struct___init___impl + fun:Struct___init__ + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:cache_struct_converter + fun:cache_struct_converter + fun:pack + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:set_table_resize + fun:_add_to_weak_set + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:set_table_resize + fun:_add_to_weak_set + fun:_abc__abc_subclasscheck_impl + fun:_abc__abc_subclasscheck + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:object_issubclass + fun:PyObject_IsSubclass + fun:_abc__abc_register_impl + fun:_abc__abc_register + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:set_table_resize + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:set_table_resize + fun:compute_abstract_methods + fun:_abc__abc_init + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:time_alloc + fun:new_time_ex2 + fun:PyInit__datetime + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:tp_new_wrapper + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyErr_NewException + fun:PyErr_NewExceptionWithDoc + fun:PyInit__lzma + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:make_type + fun:init_types + fun:init_types + fun:get_global_ast_state + fun:get_ast_state + fun:astmodule_exec + fun:PyModule_ExecDef + fun:exec_builtin_or_dynamic + fun:_imp_exec_dynamic_impl + fun:_imp_exec_dynamic + fun:cfunction_vectorcall_O + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallMethod + fun:init_importlib_external + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_sys_streams + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:init_import_site + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:type_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:exec_code_in_module + fun:PyImport_ImportFrozenModuleObject + fun:PyImport_ImportFrozenModule + fun:init_importlib + fun:pycore_init_import_warnings + fun:pycore_interp_init + fun:pyinit_config + fun:pyinit_core.constprop.0 + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyBytes_Resize + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyBytes_Resize + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyBytes_Resize + fun:assemble + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:builtin_compile_impl + fun:builtin_compile.cold + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyBytes_Resize + fun:assemble + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:bounded_lru_cache_wrapper + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:bounded_lru_cache_wrapper + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:_PyTuple_Resize + fun:PySequence_Tuple + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:bounded_lru_cache_wrapper + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:vectorcall_unbound + fun:vectorcall_method + fun:slot_mp_subscript + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:_PyObject_GC_Resize + fun:frame_alloc + fun:_PyFrame_New_NoTrack + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:list_resize + fun:list_resize + fun:app1 + fun:list_append + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_new + fun:type_call + fun:_PyObject_MakeTpCall + fun:builtin___build_class__ + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:list_resize + fun:list_resize + fun:list_ass_slice + fun:list_remove + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:handle_weakrefs + fun:collect + fun:_PyGC_CollectNoFail + fun:Py_FinalizeEx + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:_PyUnicodeWriter_Finish + fun:PyUnicode_FromFormatV + fun:PyUnicode_FromFormat + fun:calculate_qualname + fun:descr_get_qualname.cold + fun:_PyObject_GenericGetAttrWithDict + fun:_PyObject_LookupAttr + fun:_PyObject_FunctionStr + fun:method_vectorcall_NOARGS.cold + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:_PyUnicodeWriter_Finish + fun:PyUnicode_FromFormatV + fun:PyUnicode_FromFormat + fun:resolve_name + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:_PyUnicodeWriter_Finish + fun:build_string + fun:do_string_format + fun:method_vectorcall_VARARGS_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:PyObject_CallFunction + fun:PyImport_Import + fun:PyImport_ImportModule + fun:_PyCodecRegistry_Init + fun:_PyCodec_Lookup + fun:config_get_codec_name + fun:init_fs_encoding + fun:_PyUnicode_InitEncodings + fun:init_interp_main + fun:pyinit_main + fun:Py_InitializeFromConfig + fun:pymain_init + fun:pymain_main + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:_PyUnicodeWriter_Finish + fun:build_string + fun:do_string_format + fun:method_vectorcall_VARARGS_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:_PyUnicodeWriter_Finish + fun:unicode_decode_utf8 + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:unicode_resize + fun:PyUnicode_Append + fun:compiler_set_qualname + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_body + fun:compiler_class + fun:compiler_visit_stmt + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate.constprop.0 + fun:PyObject_CallOneArg + fun:_PyCodec_Lookup + fun:_PyCodec_LookupTextEncoding + fun:codec_getitem_checked + fun:_PyCodec_TextEncoder + fun:_PyCodec_EncodeText + fun:PyUnicode_AsEncodedString + fun:unicode_encode_impl + fun:unicode_encode + fun:method_vectorcall_FASTCALL_KEYWORDS + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:PySequence_List + fun:PySequence_Fast + fun:PyUnicode_Join + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:method_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:unicode_resize + fun:PyUnicode_Append + fun:compiler_set_qualname + fun:compiler_enter_scope + fun:compiler_function + fun:compiler_function + fun:compiler_body + fun:compiler_mod + fun:PyAST_CompileObject + fun:Py_CompileStringObject + fun:builtin_compile_impl + fun:builtin_compile + fun:cfunction_vectorcall_FASTCALL_KEYWORDS + fun:PyVectorcall_Call + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:unicode_resize + fun:PyUnicode_Append + fun:unicode_concatenate + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:_PyObject_CallFunctionVa + fun:callmethod + fun:PyObject_CallMethod + fun:PyInit__decimal + fun:_PyImport_LoadDynamicModuleWithSpec + fun:_imp_create_dynamic_impl + fun:_imp_create_dynamic + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:realloc + fun:resize_compact + fun:unicode_resize + fun:PyUnicode_Append + fun:unicode_concatenate + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:builtin___import__ + fun:cfunction_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:new_keys_object + fun:dict_new + fun:dict_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_init + fun:type_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_CallOneArg + fun:property_descr_get + fun:_PyObject_GenericGetAttrWithDict + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:list_extend + fun:list___init___impl + fun:list_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:gen_send_ex + fun:gen_iternext + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} + +{ + + Memcheck:Leak + match-leak-kinds: possible + fun:malloc + fun:_PyObject_GC_Alloc + fun:_PyObject_GC_Malloc + fun:_PyObject_GC_NewVar + fun:tuple_alloc + fun:PyTuple_New + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:r_object + fun:read_object + fun:marshal_loads_impl + fun:marshal_loads + fun:cfunction_vectorcall_O + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:object_vacall + fun:_PyObject_CallMethodIdObjArgs + fun:import_find_and_load + fun:PyImport_ImportModuleLevelObject + fun:import_name + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:do_call_core + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:method_vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_FastCallDictTstate + fun:_PyObject_Call_Prepend + fun:slot_tp_call + fun:_PyObject_MakeTpCall + fun:_PyObject_VectorcallTstate + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:function_code_fastcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyEval_EvalCodeWithName + fun:PyEval_EvalCodeEx + fun:PyEval_EvalCode + fun:builtin_exec_impl + fun:builtin_exec + fun:cfunction_vectorcall_FASTCALL + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:_PyObject_VectorcallTstate + fun:PyObject_Vectorcall + fun:call_function + fun:_PyEval_EvalFrameDefault + fun:_PyEval_EvalFrame + fun:_PyEval_EvalCode + fun:_PyFunction_Vectorcall + fun:pymain_run_module + fun:pymain_run_python + fun:Py_RunMain + fun:Py_BytesMain + fun:(below main) +} From 14e379e85452682da19482e92852284b1a842a75 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 2 Dec 2025 09:46:27 -0800 Subject: [PATCH 04/31] Add error handling --- src/main/conversions.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/main/conversions.c b/src/main/conversions.c index 48aecdbdf5..2790aeca68 100644 --- a/src/main/conversions.c +++ b/src/main/conversions.c @@ -1053,13 +1053,20 @@ PyObject *create_py_cluster_from_as_cluster(as_error *error_p, } // App Id is optional (declared in client config) + PyObject *py_app_id = NULL; if (cluster->app_id) { - PyObject *py_app_id = PyUnicode_FromString(cluster->app_id); - PyObject_SetAttrString(py_cluster, "app_id", py_app_id); - Py_DECREF(py_app_id); + py_app_id = PyUnicode_FromString(cluster->app_id); + if (!py_app_id) { + goto error; + } } else { - PyObject_SetAttrString(py_cluster, "app_id", Py_None); + py_app_id = Py_NewRef(Py_None); + } + + int retval = PyObject_SetAttrString(py_cluster, "app_id", py_app_id); + if (retval == -1) { + goto error; } PyObject *py_invalid_node_count = From bbf050f6ce9a95d946aae4723e410020b09ede3d Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Thu, 4 Dec 2025 14:41:09 -0800 Subject: [PATCH 05/31] Revert valgrind related changes --- .github/workflows/valgrind.yml | 2 +- test/full_suite.supp | 596079 ------------------------------ 2 files changed, 1 insertion(+), 596080 deletions(-) delete mode 100644 test/full_suite.supp diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml index 5881b1bce0..44c390a7a5 100644 --- a/.github/workflows/valgrind.yml +++ b/.github/workflows/valgrind.yml @@ -166,7 +166,7 @@ jobs: - run: echo VALGRIND_ARGS="--tool=massif --massif-out-file=./${{ env.MASSIF_REPORT_FILE_NAME }}" >> $GITHUB_ENV if: ${{ inputs.massif }} - - run: echo VALGRIND_ARGS="--leak-check=full --gen-suppressions=all --suppressions=full_suite.supp --num-callers=350 " >> $GITHUB_ENV + - run: echo VALGRIND_ARGS="--leak-check=full" >> $GITHUB_ENV if: ${{ !inputs.massif }} - run: PYTHONMALLOC=malloc valgrind --error-exitcode=1 ${{ env.VALGRIND_ARGS }} python3 -m pytest -v new_tests/${{ github.event.inputs.test-file }} diff --git a/test/full_suite.supp b/test/full_suite.supp deleted file mode 100644 index 599d8d8313..0000000000 --- a/test/full_suite.supp +++ /dev/null @@ -1,596079 +0,0 @@ -# -# This is a valgrind suppression file that should be used when using valgrind. -# -# Here's an example of running valgrind: -# -# cd python/dist/src -# valgrind --tool=memcheck --suppressions=Misc/valgrind-python.supp \ -# ./python -E -tt ./Lib/test/regrtest.py -u bsddb,network -# -# You must edit Objects/obmalloc.c and uncomment Py_USING_MEMORY_DEBUGGER -# to use the preferred suppressions with Py_ADDRESS_IN_RANGE. -# -# If you do not want to recompile Python, you can uncomment -# suppressions for PyObject_Free and PyObject_Realloc. -# -# See Misc/README.valgrind for more information. - -# all tool names: Addrcheck,Memcheck,cachegrind,helgrind,massif -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Addr4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 4 - Memcheck:Value4 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Invalid read of size 8 (x86_64 aka amd64) - Memcheck:Value8 - fun:Py_ADDRESS_IN_RANGE -} - -{ - ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value - Memcheck:Cond - fun:Py_ADDRESS_IN_RANGE -} - -# -# Leaks (including possible leaks) -# Hmmm, I wonder if this masks some real leaks. I think it does. -# Will need to fix that. -# - -{ - Suppress leaking the GIL. Happens once per process, see comment in ceval.c. - Memcheck:Leak - fun:malloc - fun:PyThread_allocate_lock - fun:PyEval_InitThreads -} - -{ - Suppress leaking the GIL after a fork. - Memcheck:Leak - fun:malloc - fun:PyThread_allocate_lock - fun:PyEval_ReInitThreads -} - -{ - Suppress leaking the autoTLSkey. This looks like it shouldn't leak though. - Memcheck:Leak - fun:malloc - fun:PyThread_create_key - fun:_PyGILState_Init - fun:Py_InitializeEx - fun:Py_Main -} - -{ - Hmmm, is this a real leak or like the GIL? - Memcheck:Leak - fun:malloc - fun:PyThread_ReInitTLS -} - -{ - Handle PyMalloc confusing valgrind (possibly leaked) - Memcheck:Leak - fun:realloc - fun:_PyObject_GC_Resize - fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING -} - -{ - Handle PyMalloc confusing valgrind (possibly leaked) - Memcheck:Leak - fun:malloc - fun:_PyObject_GC_New - fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING -} - -{ - Handle PyMalloc confusing valgrind (possibly leaked) - Memcheck:Leak - fun:malloc - fun:_PyObject_GC_NewVar - fun:COMMENT_THIS_LINE_TO_DISABLE_LEAK_WARNING -} - -# -# Non-python specific leaks -# - -{ - Handle pthread issue (possibly leaked) - Memcheck:Leak - fun:calloc - fun:allocate_dtv - fun:_dl_allocate_tls_storage - fun:_dl_allocate_tls -} - -{ - Handle pthread issue (possibly leaked) - Memcheck:Leak - fun:memalign - fun:_dl_allocate_tls_storage - fun:_dl_allocate_tls -} - -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Addr4 -### fun:PyObject_Free -###} -### -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Value4 -### fun:PyObject_Free -###} -### -###{ -### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value -### Memcheck:Cond -### fun:PyObject_Free -###} - -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Addr4 -### fun:PyObject_Realloc -###} -### -###{ -### ADDRESS_IN_RANGE/Invalid read of size 4 -### Memcheck:Value4 -### fun:PyObject_Realloc -###} -### -###{ -### ADDRESS_IN_RANGE/Conditional jump or move depends on uninitialised value -### Memcheck:Cond -### fun:PyObject_Realloc -###} - -### -### All the suppressions below are for errors that occur within libraries -### that Python uses. The problems to not appear to be related to Python's -### use of the libraries. -### - -{ - Generic ubuntu ld problems - Memcheck:Addr8 - obj:/lib/ld-2.4.so - obj:/lib/ld-2.4.so - obj:/lib/ld-2.4.so - obj:/lib/ld-2.4.so -} - -{ - Generic gentoo ld problems - Memcheck:Cond - obj:/lib/ld-2.3.4.so - obj:/lib/ld-2.3.4.so - obj:/lib/ld-2.3.4.so - obj:/lib/ld-2.3.4.so -} - -{ - DBM problems, see test_dbm - Memcheck:Param - write(buf) - fun:write - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - fun:dbm_close -} - -{ - DBM problems, see test_dbm - Memcheck:Value8 - fun:memmove - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - fun:dbm_store - fun:dbm_ass_sub -} - -{ - DBM problems, see test_dbm - Memcheck:Cond - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - fun:dbm_store - fun:dbm_ass_sub -} - -{ - DBM problems, see test_dbm - Memcheck:Cond - fun:memmove - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - obj:/usr/lib/libdb1.so.2 - fun:dbm_store - fun:dbm_ass_sub -} - -{ - GDBM problems, see test_gdbm - Memcheck:Param - write(buf) - fun:write - fun:gdbm_open - -} - -{ - ZLIB problems, see test_gzip - Memcheck:Cond - obj:/lib/libz.so.1.2.3 - obj:/lib/libz.so.1.2.3 - fun:deflate -} - -{ - Avoid problems w/readline doing a putenv and leaking on exit - Memcheck:Leak - fun:malloc - fun:xmalloc - fun:sh_set_lines_and_columns - fun:_rl_get_screen_size - fun:_rl_init_terminal_io - obj:/lib/libreadline.so.4.3 - fun:rl_initialize -} - -### -### These occur from somewhere within the SSL, when running -### test_socket_sll. They are too general to leave on by default. -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:memset -###} -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:memset -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Cond -### fun:MD5_Update -###} -### -###{ -### somewhere in SSL stuff -### Memcheck:Value4 -### fun:MD5_Update -###} - -# -# All of these problems come from using test_socket_ssl -# -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_bin2bn -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:BN_num_bits_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont_word -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BN_mod_exp_mont -} - -{ - from test_socket_ssl - Memcheck:Param - write(buf) - fun:write - obj:/usr/lib/libcrypto.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:RSA_verify -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_set_key_unchecked -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:DES_encrypt2 -} - -{ - from test_socket_ssl - Memcheck:Cond - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Value4 - obj:/usr/lib/libssl.so.0.9.7 -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:BUF_MEM_grow_clean -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:memcpy - fun:ssl3_read_bytes -} - -{ - from test_socket_ssl - Memcheck:Cond - fun:SHA1_Update -} - -{ - from test_socket_ssl - Memcheck:Value4 - fun:SHA1_Update -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:PyUnicode_New - fun:unicode_repeat - fun:unicode_repeat - fun:safe_multiply - fun:fold_binop - fun:astfold_expr - fun:astfold_expr - fun:astfold_keyword - fun:astfold_expr - fun:astfold_stmt - fun:astfold_body - fun:astfold_stmt - fun:astfold_body - fun:astfold_stmt - fun:astfold_body - fun:astfold_mod - fun:_PyAST_Optimize - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLongLong - fun:long_mul - fun:long_pow - fun:ternary_op - fun:PyNumber_Power - fun:safe_power - fun:fold_binop - fun:astfold_expr - fun:astfold_expr - fun:astfold_stmt - fun:astfold_body - fun:astfold_stmt - fun:astfold_body - fun:astfold_mod - fun:_PyAST_Optimize - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyLong_New - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_withitem - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: definite - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:codec_makeincrementalcodec - fun:_textiowrapper_set_decoder - fun:_textiowrapper_set_decoder - fun:_io_TextIOWrapper___init___impl - fun:_io_TextIOWrapper___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:builtin_getattr - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:slot_tp_hash - fun:dict_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:slot_tp_richcompare - fun:unsafe_object_compare - fun:binarysort - fun:list_sort_impl - fun:list_sort - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_io_IncrementalNewlineDecoder_reset_impl - fun:_io_IncrementalNewlineDecoder_reset - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_textiowrapper_decoder_setstate.isra.0 - fun:_io_TextIOWrapper_seek_impl - fun:_io_TextIOWrapper_seek - fun:method_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:calloc - fun:_PyCode_InitOpcache - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:fill_time - fun:_pystat_fromstructstat - fun:posix_do_stat.constprop.0 - fun:os_stat_impl - fun:os_stat - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyFloat_FromDouble - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyThread_allocate_lock - fun:rlock_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyThread_allocate_lock - fun:rlock_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:create_timezone - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:new_date_ex - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:new_delta_ex - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:rlock_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:rlock_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:s_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:calcsize - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyType_GenericAlloc - fun:s_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:pack - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:PyUnicode_Append - fun:unicode_concatenate - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_str - fun:PyObject_Str - fun:PyObject_Str - fun:unicode_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:slot_tp_repr - fun:PyObject_Repr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:PyUnicode_Append - fun:unicode_concatenate - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:PyUnicode_Append - fun:unicode_concatenate - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromASCII - fun:asciilib_rpartition - fun:PyUnicode_RPartition - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromASCII - fun:asciilib_rpartition - fun:PyUnicode_RPartition - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromASCII - fun:asciilib_split_whitespace - fun:split - fun:unicode_split_impl - fun:unicode_split - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:run_eval_code_obj - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:run_eval_code_obj - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:run_eval_code_obj - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyIO_get_locale_module.cold - fun:_io_TextIOWrapper___init___impl - fun:_io_TextIOWrapper___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:_PyUnicode_JoinArray - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:ascii_upper_or_lower - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_VectorcallMethodId - fun:_PyObject_CallMethodIdNoArgs - fun:module_register_converter - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromASCII - fun:_PyUnicode_FromASCII - fun:unicode_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:_PyUnicode_FromUCS1 - fun:PyUnicode_FromKindAndData - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:unicode_char - fun:PyUnicode_FromOrdinal - fun:unicodeiter_next - fun:PyIter_Next - fun:set_update_internal - fun:make_new_set - fun:make_new_frozenset - fun:frozenset_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:unicode_char - fun:PyUnicode_FromOrdinal - fun:unicodeiter_next - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:unicode_char - fun:unicode_getitem - fun:unicode_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:get_latin1_char - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId - fun:create_stdio.isra.0 - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyContextVar_New - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyInit__imp - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:all_ins - fun:posixmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:init_timezone - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddType - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:_PyWarnings_Init - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:_locale_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyIO_get_locale_module.cold - fun:_io_TextIOWrapper___init___impl - fun:_io_TextIOWrapper___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:init_timezone - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:math_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:posixmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:setup_confname_tables - fun:posixmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:weakref_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PyBuiltins_AddExceptions - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PyImportHooks_Init - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PySys_InitMain - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:_PySys_SetPreliminaryStderr - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyDict_SetItemString - fun:initialize_structseq_dict.isra.0 - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeInfiniteObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeKeyOrderedDict_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeNullObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:AerospikeWildcardObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyInit__imp - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyInit_gc - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyMarshal_Init - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PyWarnings_Init - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:_PyImport_FixupBuiltin - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:_PyImport_FixupBuiltin - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:_PyTypes_InitSlotDefs - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewGetSet - fun:init_handler_descrs - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_zlib - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyStructSequence_NewType - fun:posixmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:PyUnicode_InternFromString - fun:init_identifiers - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_join_names_with_dot - fun:dotted_name_raw - fun:dotted_name_rule - fun:import_from_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:atom_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:_tmp_148_rule - fun:_loop0_117_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:dotted_name_raw - fun:dotted_name_rule - fun:dotted_as_name_rule - fun:_gather_36_rule - fun:dotted_as_names_rule - fun:import_name_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:dotted_name_raw - fun:dotted_name_rule - fun:import_from_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:import_from_as_name_rule - fun:_gather_33_rule - fun:import_from_as_names_rule - fun:import_from_targets_rule - fun:import_from_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:import_from_as_name_rule - fun:_gather_33_rule - fun:import_from_as_names_rule - fun:import_from_targets_rule - fun:import_from_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:import_from_as_name_rule - fun:_loop0_34_rule - fun:_gather_33_rule - fun:import_from_as_names_rule - fun:import_from_targets_rule - fun:import_from_rule - fun:import_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:lambda_param_rule - fun:lambda_param_no_default_rule - fun:_loop1_80_rule - fun:lambda_slash_no_default_rule - fun:lambda_parameters_rule - fun:lambda_params_rule - fun:lambdef_rule - fun:expression_rule - fun:expressions_rule - fun:eval_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:param_rule - fun:param_no_default_rule - fun:_loop1_60_rule - fun:slash_no_default_rule - fun:parameters_rule - fun:params_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:param_rule - fun:param_no_default_rule - fun:_loop1_60_rule - fun:slash_no_default_rule - fun:parameters_rule - fun:params_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:param_rule - fun:param_no_default_rule - fun:_loop1_60_rule - fun:slash_no_default_rule - fun:parameters_rule - fun:params_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:param_rule - fun:param_with_default_rule - fun:_loop1_63_rule - fun:slash_with_default_rule - fun:parameters_rule - fun:params_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:_tmp_99_rule - fun:tuple_rule - fun:_tmp_95_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:except_block_rule - fun:_loop1_48_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_loop0_72_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:_tmp_99_rule - fun:tuple_rule - fun:_tmp_95_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:except_block_rule - fun:_loop1_48_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:while_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:try_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:kwarg_or_starred_rule - fun:_gather_109_rule - fun:kwargs_rule - fun:args_rule - fun:arguments_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:star_expression_rule - fun:star_expressions_rule - fun:return_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:_tmp_147_rule - fun:_loop0_107_rule - fun:_gather_106_rule - fun:args_rule - fun:arguments_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:_loop0_13_rule - fun:_gather_12_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:list_rule - fun:_tmp_96_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:_tmp_99_rule - fun:tuple_rule - fun:_tmp_95_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_loop0_72_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:list_rule - fun:_tmp_96_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:_tmp_147_rule - fun:_loop0_107_rule - fun:_gather_106_rule - fun:args_rule - fun:arguments_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:_tmp_140_rule - fun:_loop1_68_rule - fun:decorators_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:raise_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:single_subscript_attribute_target_rule - fun:_tmp_20_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:_tmp_99_rule - fun:tuple_rule - fun:_tmp_95_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:star_expression_rule - fun:star_expressions_rule - fun:return_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:star_named_expression_rule - fun:_loop0_72_rule - fun:_gather_71_rule - fun:star_named_expressions_rule - fun:_tmp_99_rule - fun:tuple_rule - fun:_tmp_95_rule - fun:atom_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:star_expression_rule - fun:star_expressions_rule - fun:return_stmt_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:_PyDict_GetItemIdWithError - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:_PyDict_SetItemId - fun:_PySys_SetPreliminaryStderr - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:_PyDict_SetItemId - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:_PyDict_SetItemId - fun:module_init_dict - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:_PyObject_SetAttrId - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:_PyUnicode_FromId - fun:create_filter - fun:init_filters - fun:warnings_init_state - fun:_PyWarnings_InitState - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkdict - fun:do_mkvalue - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:PyUnicode_New - fun:unicode_decode_utf8 - fun:do_mktuple - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:PyCode_Optimize - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:PyCode_Optimize - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:PyCode_Optimize - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:PyCode_Optimize - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:PyCode_Optimize - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:Struct___init___impl - fun:Struct___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:calcsize - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:Struct___init___impl - fun:Struct___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:pack - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:_PyPegen_fill_token - fun:_PyPegen_expect_token - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:in_bitwise_or_rule - fun:compare_op_bitwise_or_pair_rule - fun:_loop1_90_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:if_stmt_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:run_eval_code_obj - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:_PyPegen_fill_token - fun:_PyPegen_expect_token - fun:t_lookahead_rule - fun:_PyPegen_lookahead - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:_loop0_13_rule - fun:_gather_12_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:_PyPegen_parsestr - fun:_PyPegen_concatenate_strings - fun:strings_rule - fun:atom_rule - fun:primary_raw - fun:primary_rule - fun:await_primary_rule - fun:power_rule - fun:factor_rule - fun:term_raw - fun:term_rule - fun:sum_raw - fun:sum_rule - fun:shift_expr_raw - fun:shift_expr_rule - fun:bitwise_and_raw - fun:bitwise_and_rule - fun:bitwise_xor_raw - fun:bitwise_xor_rule - fun:bitwise_or_raw - fun:bitwise_or_rule - fun:comparison_rule - fun:inversion_rule - fun:conjunction_rule - fun:disjunction_rule - fun:expression_rule - fun:named_expression_rule - fun:genexp_rule - fun:t_primary_raw - fun:t_primary_rule - fun:target_with_star_atom_rule - fun:star_target_rule - fun:star_targets_rule - fun:_tmp_137_rule - fun:_loop1_22_rule - fun:assignment_rule - fun:small_stmt_rule - fun:simple_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:do_mkvalue - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId - fun:get_encoded_name - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyBytes_FromSize - fun:PyBytes_FromStringAndSize - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromLong - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeConfigProvider_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeInfiniteObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeKeyOrderedDict_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeNullObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:AerospikeWildcardObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:pysqlite_cache_setup_types - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:PyLong_FromUnsignedLong - fun:PyLong_FromUnsignedLong - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:long_lshift1 - fun:long_lshift - fun:binary_op1 - fun:binary_op - fun:PyNumber_Lshift - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:r_PyLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:r_PyLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyLong_New - fun:r_PyLong - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyClassMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyStaticMethod_New - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:property_copy - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:property_copy - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:context_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:PyType_GenericNew - fun:type_call - fun:_PyObject_MakeTpCall - fun:context_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:abc_data_new - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:abc_data_new - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:abc_data_new - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:abc_data_new - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewClassMethod - fun:add_methods - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:AerospikeConfigProvider_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewGetSet - fun:init_handler_descrs - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMember - fun:add_members - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewMethod - fun:add_methods - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeKeyOrderedDict_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:descr_new - fun:PyDescr_NewWrapper - fun:add_operators - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:long_subtype_new - fun:long_new_impl - fun:long_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:long_subtype_new - fun:long_new_impl - fun:long_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_and - fun:binary_op1 - fun:binary_op - fun:PyNumber_And - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:long_subtype_new - fun:long_new_impl - fun:long_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:long_subtype_new - fun:long_new_impl - fun:long_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:long_subtype_new - fun:long_new_impl - fun:long_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:PySet_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:make_new_set - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:object_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:tuple_subtype_new - fun:tuple_new_impl - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:tuple_subtype_new - fun:tuple_new_impl - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:tuplegetter_new_impl - fun:tuplegetter_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:weakref___new__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:weakref___new__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:PyType_GenericAlloc - fun:weakref___new__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:builtin_issubclass_impl - fun:builtin_issubclass - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:builtin_issubclass_impl - fun:builtin_issubclass - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeConfigProvider_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeInfiniteObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeNullObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:AerospikeWildcardObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:pysqlite_cache_setup_types - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCMethod_New - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyCell_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:run_eval_code_obj - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyFunction_NewWithQualName - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:PySequence_List - fun:type_mro_impl - fun:type_mro - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:PySequence_List - fun:type_mro_impl - fun:type_mro - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:_PyGC_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:_posix_listdir - fun:os_listdir_impl - fun:os_listdir - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_withitem - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:dict_keys - fun:PyDict_Keys - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyList_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:contextvar_new - fun:PyContextVar_New - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyModule_NewObject - fun:import_add_module - fun:module_dict_for_exec - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyObject_GenericGetDict - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:PyUnicode_InternInPlace - fun:PyUnicode_InternFromString - fun:_PyTypes_InitSlotDefs - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_setattro - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_setattro - fun:PyObject_SetAttr - fun:builtin_setattr_impl - fun:builtin_setattr - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:_PyStack_AsDict - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:compiler_init - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:do_mkdict - fun:do_mkvalue - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:list2dict - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:list2dict - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:list2dict - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:list2dict - fun:compiler_enter_scope - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:make_impl_info - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_handle_comprehension - fun:symtable_visit_listcomp - fun:symtable_visit_expr - fun:symtable_visit_expr - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:ste_new - fun:symtable_enter_block - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:symtable_new - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:symtable_new - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:PyDict_New - fun:warnings_init_state - fun:_PyWarnings_InitState - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_dict - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:builtin_issubclass_impl - fun:builtin_issubclass - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:builtin_issubclass_impl - fun:builtin_issubclass - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_instancecheck_impl - fun:_abc__abc_instancecheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeConfigProvider_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeInfiniteObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeKeyOrderedDict_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeNullObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:AerospikeWildcardObject_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:pysqlite_cache_setup_types - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_New - fun:new_weakref - fun:PyWeakref_NewRef - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:handle_weakrefs - fun:collect - fun:_PyGC_CollectNoFail - fun:Py_FinalizeEx - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:list_sort_impl - fun:list_sort - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_setattro - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:slot_tp_iter - fun:PyObject_GetIter - fun:list_extend - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallMethodObjArgs - fun:AerospikeGeospatial_DoLoads - fun:AerospikeGeospatial_Type_Init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:slot_tp_hash - fun:PyDict_SetItem - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:handle_weakrefs - fun:collect - fun:_PyGC_CollectNoFail - fun:Py_FinalizeEx - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_ass_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_io_IncrementalNewlineDecoder_reset_impl - fun:_io_IncrementalNewlineDecoder_reset - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_textiowrapper_decoder_setstate.isra.0 - fun:_io_TextIOWrapper_seek_impl - fun:_io_TextIOWrapper_seek - fun:method_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_gen_throw - fun:gen_throw - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_io_IncrementalNewlineDecoder_reset_impl - fun:_io_IncrementalNewlineDecoder_reset - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_textiowrapper_decoder_setstate.isra.0 - fun:_io_TextIOWrapper_seek_impl - fun:_io_TextIOWrapper_seek - fun:method_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:PyObject_CallMethodNoArgs - fun:_textiowrapper_encoder_reset - fun:_textiowrapper_encoder_setstate - fun:_io_TextIOWrapper_seek_impl - fun:_io_TextIOWrapper_seek - fun:method_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_recursive_isinstance - fun:object_recursive_isinstance - fun:PyObject_IsInstance - fun:builtin_isinstance_impl - fun:builtin_isinstance - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:builtin_next - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_attribute - fun:slot_tp_getattr_hook - fun:_PyObject_LookupAttr - fun:builtin_getattr - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:property_descr_set - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:property_descr_set - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:slot_sq_contains - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:slot_sq_contains - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_sq_length - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_comprehension - fun:compiler_listcomp - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_for - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_return - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_from_import - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_subdict - fun:compiler_dict - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_subdict - fun:compiler_dict - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:starunpack_helper - fun:compiler_tuple - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:starunpack_helper - fun:compiler_tuple - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:starunpack_helper - fun:compiler_tuple - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:maybe_optimize_method_call - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_decorators - fun:compiler_decorators - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:list_sort_impl - fun:list_sort - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:_PyStack_UnpackDict - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:add_attributes - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dict_keys_inorder - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dict_keys_inorder - fun:makecode - fun:assemble - fun:compiler_comprehension - fun:compiler_listcomp - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dict_keys_inorder - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dict_keys_inorder - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dictiter_iternextitem - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:dictiter_iternextitem - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:do_mktuple - fun:do_mkstack - fun:va_build_stack - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:long_divmod - fun:binary_op1 - fun:binary_op - fun:PyNumber_Divmod - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:long_divmod - fun:binary_op1 - fun:binary_op - fun:PyNumber_Divmod - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:make_const_tuple - fun:fold_tuple - fun:astfold_expr - fun:astfold_expr - fun:astfold_expr - fun:astfold_stmt - fun:astfold_stmt - fun:astfold_body - fun:astfold_stmt - fun:astfold_body - fun:astfold_stmt - fun:astfold_body - fun:astfold_mod - fun:_PyAST_Optimize - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:type_mro_impl - fun:type_mro - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:type_mro_impl - fun:type_mro - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:type_mro_impl - fun:type_mro - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:mro_implementation - fun:type_mro_impl - fun:type_mro - fun:method_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:parser_init.part.0 - fun:parser_init - fun:_PyArg_UnpackKeywords - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_FromModuleAndSpec - fun:_abcmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_FromModuleAndSpec - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_visit_stmt_expr - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:maybe_optimize_method_call - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyCode_ConstantKey - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:starunpack_helper - fun:compiler_tuple - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:_PyErr_SetKeyError - fun:_PyDict_DelItem_KnownHash - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:create_filter - fun:init_filters - fun:warnings_init_state - fun:_PyWarnings_InitState - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:dictiter_new - fun:dictitems_iter - fun:PyObject_GetIter - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_keyword - fun:compiler_call_helper - fun:compiler_visit_expr - fun:compiler_with - fun:compiler_try_finally - fun:compiler_try - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:merge_consts_recursive - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:maybe_optimize_method_call - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt_expr - fun:compiler_visit_stmt - fun:compiler_try_except - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_Pack - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:PySequence_Tuple - fun:mro_invoke - fun:mro_internal - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:_PyErr_CreateException - fun:_PyErr_NormalizeException - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:call_attribute - fun:slot_tp_getattr_hook - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:call_unbound_noarg - fun:slot_tp_iter - fun:PyObject_GetIter - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:call_attribute - fun:slot_tp_getattr_hook - fun:_PyObject_GetMethod - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_and - fun:binary_op1 - fun:binary_op - fun:PyNumber_And - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:call_attribute - fun:slot_tp_getattr_hook - fun:_PyObject_GetMethod - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_FastCallTstate - fun:_PyObject_FastCall - fun:init_subclass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:PyObject_CallFunctionObjArgs - fun:property_copy - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:method_vectorcall_VARARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:PyIter_Next - fun:min_max - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:tupleslice - fun:PyTuple_GetSlice - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:_PyTuple_FromArray - fun:tupleslice - fun:PyTuple_GetSlice - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:makecode - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:PyMarshal_ReadObjectFromString - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:PyCode_NewWithPosOnlyArgs - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_New - fun:get_token_missing - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_NewVar - fun:_sre_compile_impl - fun:_sre_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_NewVar - fun:_sre_compile_impl - fun:_sre_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_NewVar - fun:_sre_compile_impl - fun:_sre_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:atexit_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:partial_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__socket - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:clone_combined_dict - fun:PyDict_Copy - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:datetime_alloc - fun:new_datetime_ex2 - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:list_resize - fun:list_resize - fun:list_extend - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:list_resize - fun:list_resize - fun:list_extend - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:list_resize - fun:list_resize - fun:list_extend - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:make_keys_shared - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:make_keys_shared - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:make_keys_shared - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:make_keys_shared - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_dict_with_shared_keys - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewKeysForClass - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewPresized - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewPresized - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewPresized - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:_PyDict_NewPresized - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyDict_FromKeys - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_FastCallDictTstate - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:PyDict_Copy - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:dict_merge - fun:_PyImport_Cleanup - fun:Py_FinalizeEx - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:PyDict_SetDefault - fun:PyUnicode_InternInPlace - fun:_PyPegen_new_identifier - fun:_PyPegen_name_token - fun:function_def_raw_rule - fun:function_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:block_rule - fun:class_def_raw_rule - fun:class_def_rule - fun:compound_stmt_rule - fun:statement_rule - fun:_loop1_11_rule - fun:statements_rule - fun:file_rule - fun:_PyPegen_parse - fun:_PyPegen_run_parser - fun:_PyPegen_run_parser_from_string - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:PyDict_SetDefault - fun:dict_setdefault_impl - fun:dict_setdefault - fun:method_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_or - fun:binary_op1 - fun:binary_op - fun:PyNumber_Or - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:PyInit__blake2 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:PyModule_AddIntConstant - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:PyModule_AddObject - fun:weakref_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:initialize_structseq_dict.isra.0 - fun:PyStructSequence_InitType2 - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:initialize_structseq_dict.isra.0 - fun:PyStructSequence_InitType2 - fun:_PyErr_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:initialize_structseq_dict.isra.0 - fun:PyStructSequence_InitType2 - fun:_PyLong_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyDict_SetItemString - fun:initialize_structseq_dict.isra.0 - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyInit__thread - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyModule_AddType - fun:operator_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyInit__signal - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:signal_install_handlers - fun:_PySignal_Init - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit_select - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:PyObject_LengthHint - fun:PyObject_LengthHint - fun:list_extend - fun:PySequence_List - fun:method_output_as_list - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyIO_get_locale_module.cold - fun:_io_TextIOWrapper___init___impl - fun:_io_TextIOWrapper___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallNoArg - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_maybe.constprop.0 - fun:slot_nb_and - fun:binary_op1 - fun:binary_op - fun:PyNumber_And - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_arg - fun:ast2obj_arg - fun:ast2obj_list - fun:ast2obj_arguments - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_arguments - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_comprehension - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_keyword - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr.cold - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_keyword - fun:ast2obj_list - fun:ast2obj_expr - fun:ast2obj_expr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_stmt - fun:ast2obj_list - fun:ast2obj_stmt.cold - fun:ast2obj_list - fun:ast2obj_mod - fun:PyAST_mod2obj - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObjectDict_SetItem - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:wrap_setattr - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_tp_setattro - fun:PyObject_SetAttr - fun:builtin_setattr_impl - fun:builtin_setattr - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_FromDefAndSpec2 - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:builtin_setattr_impl - fun:builtin_setattr - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:add_ast_fields - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:AerospikeTransaction_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyInit__sha512 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__csv - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:array_modexec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:find_name_in_mro - fun:_PyType_Lookup - fun:_PyType_Lookup - fun:_PyObject_LookupSpecial - fun:set_names - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_getset - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:_bz2_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:PyThread_GetInfo - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PyFloat_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:_PySys_InitCore - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyStructSequence_InitType2 - fun:time_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:_json_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:tracer_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_members - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:AerospikeClient_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:AerospikeGeospatial_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:AerospikeQuery_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:AerospikeScan_Ready - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyInit__pickle - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyInit__sre - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:_functools_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:collections_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:itertoolsmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__random - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:PyType_FromModuleAndSpec - fun:PyInit__struct - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:best_base.cold - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_methods - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_operators - fun:PyType_Ready - fun:type_getattro - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:cm_get___isabstractmethod__ - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_IsAbstract - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyInit_aerospike - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:PyInit__sqlite3 - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:PyObject_SetAttrString - fun:_add_methods_to_object - fun:PyModule_AddFunctions - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:add_tp_new_wrapper - fun:add_operators - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:cache_struct_converter - fun:cache_struct_converter - fun:pack - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:import_all_from - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:init_handler_descrs - fun:PyInit_pyexpat - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyCapsule_Import.cold - fun:PyInit__elementtree - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:type_set_abstractmethods - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dictresize - fun:insertion_resize - fun:insertdict - fun:type_set_abstractmethods - fun:_PyObject_GenericSetAttrWithDict - fun:type_setattro - fun:PyObject_SetAttr - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyDict_SetDefault - fun:PyUnicode_InternInPlace - fun:PyUnicode_InternFromString - fun:_PyTypes_InitSlotDefs - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyDict_SetDefault - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyDict_SetDefault - fun:merge_const_tuple - fun:makecode - fun:assemble - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyDict_SetItemString - fun:metadata_to_pyobject - fun:do_record_to_pyobject - fun:record_to_pyobject - fun:AerospikeClient_Get_Invoke - fun:AerospikeClient_Get - fun:method_vectorcall_VARARGS_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyType_Ready - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:PyType_Ready - fun:PyModuleDef_Init - fun:_PyModule_CreateInitialized - fun:_PySys_Create - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_FileIO___init___impl - fun:_io_FileIO___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:_PyObject_CallFunction_SizeT - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:_PyObject_CallMethodId_SizeT - fun:PyFile_OpenCodeObject - fun:_io_open_code_impl - fun:_io_open_code - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyObject_GenericSetAttrWithDict - fun:PyObject_GenericSetAttr - fun:PyObject_SetAttr - fun:_io_open_impl - fun:_io_open - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyImportZip_Init - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:_PyStack_AsDict - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_methods - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_methods - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyBuiltin_Init - fun:pycore_init_builtins - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyHamt_Init - fun:_PyContext_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:_PyUnicode_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_operators - fun:PyType_Ready - fun:type_getattro - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_VectorcallMethod - fun:_PyObject_CallMethodIdOneArg - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:PyModule_AddType - fun:PyInit__io - fun:_imp_create_builtin - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:_PyExc_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:_PyTypes_Init - fun:pycore_init_types - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:add_subclass - fun:PyType_Ready - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:analyze_name - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:analyze_name - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:analyze_name - fun:analyze_block - fun:analyze_child_block - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:analyze_name - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:analyze_name - fun:analyze_block - fun:symtable_analyze - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_add_const - fun:compiler_addop_load_const - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_add_const - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_add_const - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_add_const - fun:compiler_function - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_add_const - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_addop_name - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_visit_expr - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_decorators - fun:compiler_decorators - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_visit_expr - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_jump_if - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_visit_expr - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_lambda - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_mod - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:compiler_add_o - fun:compiler_add_o - fun:compiler_nameop - fun:compiler_visit_expr - fun:compiler_call - fun:compiler_visit_expr1 - fun:compiler_visit_expr - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:dictbytype - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:list2dict - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_if - fun:compiler_visit_stmt - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:map_to_dict - fun:PyFrame_FastToLocalsWithError - fun:PyEval_GetLocals - fun:builtin_locals_impl - fun:builtin_locals - fun:cfunction_vectorcall_NOARGS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:module_init_dict - fun:PyModule_NewObject - fun:PyModule_New - fun:_PyModule_CreateInitialized - fun:PyInit__imp - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:ste_new - fun:symtable_enter_block - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_alias.isra.0 - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_expr - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:PyIter_Next - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:bounded_lru_cache_wrapper - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:PyObject_GetItem - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_expr - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_expr - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_expr - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_expr - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:run_mod - fun:PyRun_StringFlags - fun:builtin_eval_impl - fun:builtin_eval - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:insert_to_emptydict - fun:symtable_add_def_helper - fun:symtable_add_def - fun:symtable_visit_params - fun:symtable_visit_arguments - fun:symtable_visit_stmt - fun:symtable_visit_stmt - fun:PySymtable_BuildObject - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:prepare_s - fun:Struct___init___impl - fun:Struct___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:calcsize - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:prepare_s - fun:Struct___init___impl - fun:Struct___init__ - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:cache_struct_converter - fun:cache_struct_converter - fun:pack - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:set_table_resize - fun:_add_to_weak_set - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:set_table_resize - fun:_add_to_weak_set - fun:_abc__abc_subclasscheck_impl - fun:_abc__abc_subclasscheck - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:object_issubclass - fun:PyObject_IsSubclass - fun:_abc__abc_register_impl - fun:_abc__abc_register - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:set_table_resize - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:set_table_resize - fun:compute_abstract_methods - fun:_abc__abc_init - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:time_alloc - fun:new_time_ex2 - fun:PyInit__datetime - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:tp_new_wrapper - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyErr_NewException - fun:PyErr_NewExceptionWithDoc - fun:PyInit__lzma - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:make_type - fun:init_types - fun:init_types - fun:get_global_ast_state - fun:get_ast_state - fun:astmodule_exec - fun:PyModule_ExecDef - fun:exec_builtin_or_dynamic - fun:_imp_exec_dynamic_impl - fun:_imp_exec_dynamic - fun:cfunction_vectorcall_O - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallMethod - fun:init_importlib_external - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_sys_streams - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:init_import_site - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:type_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:exec_code_in_module - fun:PyImport_ImportFrozenModuleObject - fun:PyImport_ImportFrozenModule - fun:init_importlib - fun:pycore_init_import_warnings - fun:pycore_interp_init - fun:pyinit_config - fun:pyinit_core.constprop.0 - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyBytes_Resize - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyBytes_Resize - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyBytes_Resize - fun:assemble - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:builtin_compile_impl - fun:builtin_compile.cold - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyBytes_Resize - fun:assemble - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:bounded_lru_cache_wrapper - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:bounded_lru_cache_wrapper - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:_PyTuple_Resize - fun:PySequence_Tuple - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:bounded_lru_cache_wrapper - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:vectorcall_unbound - fun:vectorcall_method - fun:slot_mp_subscript - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:_PyObject_GC_Resize - fun:frame_alloc - fun:_PyFrame_New_NoTrack - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:list_resize - fun:list_resize - fun:app1 - fun:list_append - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_new - fun:type_call - fun:_PyObject_MakeTpCall - fun:builtin___build_class__ - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:list_resize - fun:list_resize - fun:list_ass_slice - fun:list_remove - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:handle_weakrefs - fun:collect - fun:_PyGC_CollectNoFail - fun:Py_FinalizeEx - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:_PyUnicodeWriter_Finish - fun:PyUnicode_FromFormatV - fun:PyUnicode_FromFormat - fun:calculate_qualname - fun:descr_get_qualname.cold - fun:_PyObject_GenericGetAttrWithDict - fun:_PyObject_LookupAttr - fun:_PyObject_FunctionStr - fun:method_vectorcall_NOARGS.cold - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:_PyUnicodeWriter_Finish - fun:PyUnicode_FromFormatV - fun:PyUnicode_FromFormat - fun:resolve_name - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:_PyUnicodeWriter_Finish - fun:build_string - fun:do_string_format - fun:method_vectorcall_VARARGS_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:PyObject_CallFunction - fun:PyImport_Import - fun:PyImport_ImportModule - fun:_PyCodecRegistry_Init - fun:_PyCodec_Lookup - fun:config_get_codec_name - fun:init_fs_encoding - fun:_PyUnicode_InitEncodings - fun:init_interp_main - fun:pyinit_main - fun:Py_InitializeFromConfig - fun:pymain_init - fun:pymain_main - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:_PyUnicodeWriter_Finish - fun:build_string - fun:do_string_format - fun:method_vectorcall_VARARGS_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:_PyUnicodeWriter_Finish - fun:unicode_decode_utf8 - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:unicode_resize - fun:PyUnicode_Append - fun:compiler_set_qualname - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_body - fun:compiler_class - fun:compiler_visit_stmt - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate.constprop.0 - fun:PyObject_CallOneArg - fun:_PyCodec_Lookup - fun:_PyCodec_LookupTextEncoding - fun:codec_getitem_checked - fun:_PyCodec_TextEncoder - fun:_PyCodec_EncodeText - fun:PyUnicode_AsEncodedString - fun:unicode_encode_impl - fun:unicode_encode - fun:method_vectorcall_FASTCALL_KEYWORDS - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:PySequence_List - fun:PySequence_Fast - fun:PyUnicode_Join - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:method_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:unicode_resize - fun:PyUnicode_Append - fun:compiler_set_qualname - fun:compiler_enter_scope - fun:compiler_function - fun:compiler_function - fun:compiler_body - fun:compiler_mod - fun:PyAST_CompileObject - fun:Py_CompileStringObject - fun:builtin_compile_impl - fun:builtin_compile - fun:cfunction_vectorcall_FASTCALL_KEYWORDS - fun:PyVectorcall_Call - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:unicode_resize - fun:PyUnicode_Append - fun:unicode_concatenate - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:_PyObject_CallFunctionVa - fun:callmethod - fun:PyObject_CallMethod - fun:PyInit__decimal - fun:_PyImport_LoadDynamicModuleWithSpec - fun:_imp_create_dynamic_impl - fun:_imp_create_dynamic - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:realloc - fun:resize_compact - fun:unicode_resize - fun:PyUnicode_Append - fun:unicode_concatenate - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:builtin___import__ - fun:cfunction_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:new_keys_object - fun:dict_new - fun:dict_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_init - fun:type_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_CallOneArg - fun:property_descr_get - fun:_PyObject_GenericGetAttrWithDict - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:list_extend - fun:list___init___impl - fun:list_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:gen_send_ex - fun:gen_iternext - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} - -{ - - Memcheck:Leak - match-leak-kinds: possible - fun:malloc - fun:_PyObject_GC_Alloc - fun:_PyObject_GC_Malloc - fun:_PyObject_GC_NewVar - fun:tuple_alloc - fun:PyTuple_New - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:r_object - fun:read_object - fun:marshal_loads_impl - fun:marshal_loads - fun:cfunction_vectorcall_O - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:object_vacall - fun:_PyObject_CallMethodIdObjArgs - fun:import_find_and_load - fun:PyImport_ImportModuleLevelObject - fun:import_name - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:do_call_core - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:method_vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_FastCallDictTstate - fun:_PyObject_Call_Prepend - fun:slot_tp_call - fun:_PyObject_MakeTpCall - fun:_PyObject_VectorcallTstate - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:function_code_fastcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyEval_EvalCodeWithName - fun:PyEval_EvalCodeEx - fun:PyEval_EvalCode - fun:builtin_exec_impl - fun:builtin_exec - fun:cfunction_vectorcall_FASTCALL - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:_PyObject_VectorcallTstate - fun:PyObject_Vectorcall - fun:call_function - fun:_PyEval_EvalFrameDefault - fun:_PyEval_EvalFrame - fun:_PyEval_EvalCode - fun:_PyFunction_Vectorcall - fun:pymain_run_module - fun:pymain_run_python - fun:Py_RunMain - fun:Py_BytesMain - fun:(below main) -} From ae6dc433dc252f0e6cf65df6a473eb6c7ba790a7 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 10:38:51 -0800 Subject: [PATCH 06/31] Update documentation for client config's app_id and cluster_name options --- doc/aerospike.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/aerospike.rst b/doc/aerospike.rst index 8fd7b04fbe..e083b1cf87 100644 --- a/doc/aerospike.rst +++ b/doc/aerospike.rst @@ -767,10 +767,14 @@ Only the `hosts` key is required; the rest of the keys are optional. Compress data for transmission if the object size is greater than a given number of bytes Default: ``0``, meaning 'never compress' - * **cluster_name** (:class:`str`) + * **cluster_name** (:class:`Optional[str]`) Only server nodes matching this name will be used when determining the cluster name. - * **app_id** (:class:`str`) + + Default: :py:obj:`None` + * **app_id** (:class:`Optional[str]`) Application identifier. + + Default: :py:obj:`None` * **rack_id** (:class:`int`) Rack id where this client instance resides. From 693a74d8b65d405f8949e9b54ee4881ba389016a Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 10:39:15 -0800 Subject: [PATCH 07/31] Test case does not set app_id, so it should expect app_id to be None --- test/new_tests/test_metrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 91b13559fb..a61b4e3fc0 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -194,7 +194,8 @@ def test_setting_metrics_policy_custom_settings(self): assert type(cluster.command_count) == int assert type(cluster.retry_count) == int assert type(cluster.nodes) == list - assert cluster.app_id is None or type(cluster.app_id) == str + # as_connection doesn't set an app_id + assert cluster.app_id is None # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node From 5ec77acb5f4e299d4d94f1c22f8c747761abbf17 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 10:42:08 -0800 Subject: [PATCH 08/31] Update outdated description --- doc/aerospike.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/aerospike.rst b/doc/aerospike.rst index e083b1cf87..74889c89b9 100644 --- a/doc/aerospike.rst +++ b/doc/aerospike.rst @@ -768,7 +768,10 @@ Only the `hosts` key is required; the rest of the keys are optional. Default: ``0``, meaning 'never compress' * **cluster_name** (:class:`Optional[str]`) - Only server nodes matching this name will be used when determining the cluster name. + Expected cluster name. If set to a string value, the ``cluster_name`` must match the cluster-name field + in the service section in each server configuration. This ensures that the specified + seed nodes belong to the expected cluster on startup. If not, the client will refuse + to add the node to the client's view of the cluster. Default: :py:obj:`None` * **app_id** (:class:`Optional[str]`) From e246426351a6f762359acfbf8902c191f090d150 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 10:49:41 -0800 Subject: [PATCH 09/31] Add test case to check when app_id is set to both None and a str --- test/new_tests/test_metrics.py | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index a61b4e3fc0..bdac45892e 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -7,6 +7,8 @@ import time from typing import Optional import re +import aerospike +from .test_base_class import TestBaseClass from importlib.metadata import version # Flags for testing callbacks @@ -160,7 +162,23 @@ def test_metrics_writer(self): for item in metrics_log_filenames: os.remove(item) - def test_setting_metrics_policy_custom_settings(self): + @pytest.mark.parametrize( + "app_id", + [ + None, + "myapp" + ] + ) + def client_with_app_id(self, app_id): + config = TestBaseClass.get_connection_config() + config["app_id"] = app_id + client = aerospike.client(config) + + yield client + + client.close() + + def test_setting_metrics_policy_custom_settings(self, client_with_app_id): self.metrics_log_folder = "./metrics-logs" # Save bucket count for testing later @@ -175,9 +193,9 @@ def test_setting_metrics_policy_custom_settings(self): labels={"a": "b"}, ) - self.as_connection.enable_metrics(policy=policy) + client_with_app_id.enable_metrics(policy=policy) time.sleep(3) - self.as_connection.disable_metrics() + client_with_app_id.disable_metrics() # These callbacks should've been called assert enable_triggered is True @@ -194,8 +212,7 @@ def test_setting_metrics_policy_custom_settings(self): assert type(cluster.command_count) == int assert type(cluster.retry_count) == int assert type(cluster.nodes) == list - # as_connection doesn't set an app_id - assert cluster.app_id is None + assert cluster.app_id is app_id # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node From 66277144269ee7bfb6375504eee5b380ab7ec7f3 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 10:50:40 -0800 Subject: [PATCH 10/31] app_id test case shouldn't be in standalone tests since clients have control over app_id --- test/standalone/test_ext_metrics_cluster_name.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/standalone/test_ext_metrics_cluster_name.py b/test/standalone/test_ext_metrics_cluster_name.py index d7cc3abec1..b95af360b0 100644 --- a/test/standalone/test_ext_metrics_cluster_name.py +++ b/test/standalone/test_ext_metrics_cluster_name.py @@ -18,8 +18,7 @@ "hosts": [ ("127.0.0.1", 3000) ], - "cluster_name": "docker", - "app_id": "PythonClientTest" + "cluster_name": "docker" } print("Connecting to server...") as_client = aerospike.client(config) @@ -36,14 +35,12 @@ def snapshot(cluster: Cluster): global snapshot_triggered snapshot_triggered = True assert cluster.cluster_name == "docker" - assert cluster.app_id == "PythonClientTest" def disable(cluster: Cluster): print(f"Disable listener run. Cluster name: {cluster.cluster_name}") global disable_triggered disable_triggered = True assert cluster.cluster_name == "docker" - assert cluster.app_id == "PythonClientTest" def node_close(_: Node): pass From 83c61d2bad80533a82a6d3829d14572c35939c4a Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 11:05:37 -0800 Subject: [PATCH 11/31] fix --- test/new_tests/test_metrics.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index bdac45892e..90609d073b 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -169,6 +169,7 @@ def test_metrics_writer(self): "myapp" ] ) + @pytest.fixture(scope="function") def client_with_app_id(self, app_id): config = TestBaseClass.get_connection_config() config["app_id"] = app_id From c2432525bb29f2eaec6bae80969d3c63cfff6ab5 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 12:31:01 -0800 Subject: [PATCH 12/31] fix --- test/new_tests/test_metrics.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 90609d073b..c84efe2a5d 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -162,17 +162,10 @@ def test_metrics_writer(self): for item in metrics_log_filenames: os.remove(item) - @pytest.mark.parametrize( - "app_id", - [ - None, - "myapp" - ] - ) - @pytest.fixture(scope="function") - def client_with_app_id(self, app_id): + @pytest.fixture(scope="function", params=[None, "my_app"]) + def client_with_app_id(request): config = TestBaseClass.get_connection_config() - config["app_id"] = app_id + config["app_id"] = request.param client = aerospike.client(config) yield client From 35c43af54952b2e89eb5953980d40649212119ac Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:37:41 -0800 Subject: [PATCH 13/31] syntax fix --- test/new_tests/test_metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index c84efe2a5d..36768de73d 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -163,7 +163,7 @@ def test_metrics_writer(self): os.remove(item) @pytest.fixture(scope="function", params=[None, "my_app"]) - def client_with_app_id(request): + def client_with_app_id(self, request): config = TestBaseClass.get_connection_config() config["app_id"] = request.param client = aerospike.client(config) From 60b8785d211fe07b514aa8376ad1aa92c0dcf8eb Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 14:52:36 -0800 Subject: [PATCH 14/31] Fix test. Also fix bug where user cannot set client config option app_id to None --- src/main/client/type.c | 2 +- test/new_tests/test_metrics.py | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/main/client/type.c b/src/main/client/type.c index 1a700a5895..482fbee332 100644 --- a/src/main/client/type.c +++ b/src/main/client/type.c @@ -1219,7 +1219,7 @@ static int AerospikeClient_Type_Init(AerospikeClient *self, PyObject *args, PyObject *py_app_id = NULL; retval = PyDict_GetItemStringRef(py_config, "app_id", &py_app_id); - if (retval == 1) { + if (retval == 1 && !Py_IsNone(py_app_id)) { const char *str = convert_pyobject_to_str(py_app_id); if (!str) { Py_DECREF(py_app_id); diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 36768de73d..9639c28dcf 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -163,16 +163,18 @@ def test_metrics_writer(self): os.remove(item) @pytest.fixture(scope="function", params=[None, "my_app"]) - def client_with_app_id(self, request): + def app_id_and_client(self, request): config = TestBaseClass.get_connection_config() config["app_id"] = request.param client = aerospike.client(config) - yield client + yield request.param, client client.close() - def test_setting_metrics_policy_custom_settings(self, client_with_app_id): + def test_setting_metrics_policy_custom_settings(self, app_id_and_client): + app_id, client = app_id_and_client + self.metrics_log_folder = "./metrics-logs" # Save bucket count for testing later @@ -187,9 +189,9 @@ def test_setting_metrics_policy_custom_settings(self, client_with_app_id): labels={"a": "b"}, ) - client_with_app_id.enable_metrics(policy=policy) + client.enable_metrics(policy=policy) time.sleep(3) - client_with_app_id.disable_metrics() + client.disable_metrics() # These callbacks should've been called assert enable_triggered is True @@ -206,7 +208,7 @@ def test_setting_metrics_policy_custom_settings(self, client_with_app_id): assert type(cluster.command_count) == int assert type(cluster.retry_count) == int assert type(cluster.nodes) == list - assert cluster.app_id is app_id + assert cluster.app_id == app_id # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node From 3c7c8e0c5a1798bd9b33c811304faa7aa32b49f2 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 15:29:32 -0800 Subject: [PATCH 15/31] Add test case for setting cluster_name to None, and for setting an invalid cluster_name. Fix type in docs --- doc/aerospike.rst | 4 ++-- test/new_tests/test_connect.py | 26 ++++++++++++++++++-------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/doc/aerospike.rst b/doc/aerospike.rst index 74889c89b9..95c7ba926e 100644 --- a/doc/aerospike.rst +++ b/doc/aerospike.rst @@ -767,14 +767,14 @@ Only the `hosts` key is required; the rest of the keys are optional. Compress data for transmission if the object size is greater than a given number of bytes Default: ``0``, meaning 'never compress' - * **cluster_name** (:class:`Optional[str]`) + * **cluster_name** (:class:`str (optional)`) Expected cluster name. If set to a string value, the ``cluster_name`` must match the cluster-name field in the service section in each server configuration. This ensures that the specified seed nodes belong to the expected cluster on startup. If not, the client will refuse to add the node to the client's view of the cluster. Default: :py:obj:`None` - * **app_id** (:class:`Optional[str]`) + * **app_id** (:class:`str (optional)`) Application identifier. Default: :py:obj:`None` diff --git a/test/new_tests/test_connect.py b/test/new_tests/test_connect.py index 8f212085be..93f8fa2dff 100644 --- a/test/new_tests/test_connect.py +++ b/test/new_tests/test_connect.py @@ -147,18 +147,28 @@ def test_connect_positive_shm_not_enabled(self): assert client.is_connected() assert client.shm_key() is None - def test_connect_positive_cluster_name(self): + @pytest.mark.parametrize( + "cluster_name", + [ + None, + # This test case is for code coverage purposes + "invalid-cluster-name" + ] + ) + def test_connect_positive_cluster_name(self, cluster_name): """ - Invoke connect() giving a cluster name. This is just a usage test (doesn't care if the server's cluster name - matches or not) + Invoke connect() giving a cluster name) """ config = self.connection_config.copy() - config["cluster_name"] = "test-cluster" + config["cluster_name"] = cluster_name + + if cluster_name is None: + cm = nullcontext() + else: + cm = pytest.raises(e.ClusterError) - try: - self.client = aerospike.client(config).connect() - except e.ClientError: - pass + with cm: + self.client = aerospike.client(config) def test_connect_positive_reconnect(self): """ From 3ef9c41fb9d2de297c79b04662a8f497822647d9 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 5 Dec 2025 15:45:35 -0800 Subject: [PATCH 16/31] Just make ClientError --- test/new_tests/test_connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new_tests/test_connect.py b/test/new_tests/test_connect.py index 93f8fa2dff..7a56fc9766 100644 --- a/test/new_tests/test_connect.py +++ b/test/new_tests/test_connect.py @@ -165,7 +165,7 @@ def test_connect_positive_cluster_name(self, cluster_name): if cluster_name is None: cm = nullcontext() else: - cm = pytest.raises(e.ClusterError) + cm = pytest.raises(e.ClientError) with cm: self.client = aerospike.client(config) From 555525293bdbf717395d568dc17f72833a8188dc Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:00:44 -0800 Subject: [PATCH 17/31] Revert. this formatting is better. --- doc/aerospike.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/aerospike.rst b/doc/aerospike.rst index 95c7ba926e..74889c89b9 100644 --- a/doc/aerospike.rst +++ b/doc/aerospike.rst @@ -767,14 +767,14 @@ Only the `hosts` key is required; the rest of the keys are optional. Compress data for transmission if the object size is greater than a given number of bytes Default: ``0``, meaning 'never compress' - * **cluster_name** (:class:`str (optional)`) + * **cluster_name** (:class:`Optional[str]`) Expected cluster name. If set to a string value, the ``cluster_name`` must match the cluster-name field in the service section in each server configuration. This ensures that the specified seed nodes belong to the expected cluster on startup. If not, the client will refuse to add the node to the client's view of the cluster. Default: :py:obj:`None` - * **app_id** (:class:`str (optional)`) + * **app_id** (:class:`Optional[str]`) Application identifier. Default: :py:obj:`None` From b1f1756c73033f0f0990636440003a3930688abe Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:06:28 -0800 Subject: [PATCH 18/31] improve documentation for client config app_id option. --- doc/aerospike.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/aerospike.rst b/doc/aerospike.rst index 74889c89b9..6d591e155a 100644 --- a/doc/aerospike.rst +++ b/doc/aerospike.rst @@ -775,7 +775,7 @@ Only the `hosts` key is required; the rest of the keys are optional. Default: :py:obj:`None` * **app_id** (:class:`Optional[str]`) - Application identifier. + Application identifier. If not set to a string, uses the client's username by default. Default: :py:obj:`None` * **rack_id** (:class:`int`) From a7927e91215c4b55a69ba86dadbc48c1d48efd8f Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:08:02 -0800 Subject: [PATCH 19/31] improve fixture name --- test/new_tests/test_metrics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 9639c28dcf..4d8d7ab4a8 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -163,7 +163,7 @@ def test_metrics_writer(self): os.remove(item) @pytest.fixture(scope="function", params=[None, "my_app"]) - def app_id_and_client(self, request): + def get_client_and_app_id(self, request): config = TestBaseClass.get_connection_config() config["app_id"] = request.param client = aerospike.client(config) @@ -172,8 +172,8 @@ def app_id_and_client(self, request): client.close() - def test_setting_metrics_policy_custom_settings(self, app_id_and_client): - app_id, client = app_id_and_client + def test_setting_metrics_policy_custom_settings(self, get_client_and_app_id): + app_id, client = get_client_and_app_id self.metrics_log_folder = "./metrics-logs" From 0d14cdc932c2b01dac9b15578444edfb8735a34d Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:11:43 -0800 Subject: [PATCH 20/31] Rename --- test/new_tests/test_connect.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/new_tests/test_connect.py b/test/new_tests/test_connect.py index 7a56fc9766..9f891b2197 100644 --- a/test/new_tests/test_connect.py +++ b/test/new_tests/test_connect.py @@ -155,9 +155,9 @@ def test_connect_positive_shm_not_enabled(self): "invalid-cluster-name" ] ) - def test_connect_positive_cluster_name(self, cluster_name): + def test_connect_with_cluster_name(self, cluster_name): """ - Invoke connect() giving a cluster name) + Invoke connect() giving a cluster name """ config = self.connection_config.copy() config["cluster_name"] = cluster_name From e2e7210764f09c056e6bd3a6a477b715cd9304ff Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:25:20 -0800 Subject: [PATCH 21/31] Fix test --- test/new_tests/test_metrics.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 4d8d7ab4a8..a354fefd3d 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -208,7 +208,12 @@ def test_setting_metrics_policy_custom_settings(self, get_client_and_app_id): assert type(cluster.command_count) == int assert type(cluster.retry_count) == int assert type(cluster.nodes) == list - assert cluster.app_id == app_id + if type(app_id) == str: + assert cluster.app_id == app_id + else: + # The app_id can default to be the username, + # Or potentially None if not set. TODO: need to verify this. + assert type(cluster.app_id) == str or cluster.app_id is None # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node From d5d415544b3fdf5b698bb5362e187851d558e293 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:27:28 -0800 Subject: [PATCH 22/31] Verified that None codepath is run using codecov --- test/new_tests/test_metrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index a354fefd3d..d4d5dc308d 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -212,7 +212,7 @@ def test_setting_metrics_policy_custom_settings(self, get_client_and_app_id): assert cluster.app_id == app_id else: # The app_id can default to be the username, - # Or potentially None if not set. TODO: need to verify this. + # Or None if not set assert type(cluster.app_id) == str or cluster.app_id is None # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: From de3a76735b62d617efc6f046f4937931c1273887 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:30:34 -0800 Subject: [PATCH 23/31] TODO: run on both EE and CE --- test/new_tests/test_metrics.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index d4d5dc308d..0381282575 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -210,10 +210,12 @@ def test_setting_metrics_policy_custom_settings(self, get_client_and_app_id): assert type(cluster.nodes) == list if type(app_id) == str: assert cluster.app_id == app_id + elif TestBaseClass.auth_in_use(): + # The app_id will default to be the username + assert type(cluster.app_id) == str else: - # The app_id can default to be the username, - # Or None if not set - assert type(cluster.app_id) == str or cluster.app_id is None + # Or None if the username is not set + assert cluster.app_id is None # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: assert type(node) == Node From 3d2206f1c76650c17abc0ea6b7b82c1b0b756a5e Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 09:51:40 -0800 Subject: [PATCH 24/31] fix documentation and test --- aerospike_helpers/metrics/__init__.py | 3 ++- test/new_tests/test_metrics.py | 5 +---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/aerospike_helpers/metrics/__init__.py b/aerospike_helpers/metrics/__init__.py index c9fa406c2a..896d739fb6 100644 --- a/aerospike_helpers/metrics/__init__.py +++ b/aerospike_helpers/metrics/__init__.py @@ -105,7 +105,8 @@ class Cluster: Attributes: cluster_name (Optional[str]): Expected cluster name for all nodes. May be :py:obj:`None`. - app_id (Optional[str]): Application identifier. May be :py:obj:`None`. + app_id (Optional[str]): Application identifier. Will be :py:obj:`None` if ``app_id`` is not set to a string in + the client config dictionary. invalid_node_count (int): Count of add node failures in the most recent cluster tend iteration. command_count (int): Command count. The value is cumulative and not reset per metrics interval. retry_count (int): Command retry count. There can be multiple retries for a single command. diff --git a/test/new_tests/test_metrics.py b/test/new_tests/test_metrics.py index 0381282575..5ad6832c3b 100644 --- a/test/new_tests/test_metrics.py +++ b/test/new_tests/test_metrics.py @@ -210,11 +210,8 @@ def test_setting_metrics_policy_custom_settings(self, get_client_and_app_id): assert type(cluster.nodes) == list if type(app_id) == str: assert cluster.app_id == app_id - elif TestBaseClass.auth_in_use(): - # The app_id will default to be the username - assert type(cluster.app_id) == str else: - # Or None if the username is not set + # Or None if the app_id is not set assert cluster.app_id is None # Also check the Node and ConnectionStats objects in the Cluster object were populated for node in cluster.nodes: From 85f6f285f5f149242f136a88641fc94eadf3e4e2 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 11:54:25 -0800 Subject: [PATCH 25/31] fix mem leak --- src/main/conversions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/conversions.c b/src/main/conversions.c index adec8c6941..912c0d0a13 100644 --- a/src/main/conversions.c +++ b/src/main/conversions.c @@ -1067,6 +1067,7 @@ PyObject *create_py_cluster_from_as_cluster(as_error *error_p, } int retval = PyObject_SetAttrString(py_cluster, "app_id", py_app_id); + Py_DECREF(py_app_id); if (retval == -1) { goto error; } From 0ca54725db237d6556551d606022359febe9e3c9 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:07:59 -0800 Subject: [PATCH 26/31] Update c client --- .gitmodules | 2 +- aerospike-client-c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index aa9d1f81a3..136ba68cbe 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,4 +2,4 @@ path = aerospike-client-c # url = git@github.com:aerospike/aerospike-client-c.git url = https://github.com/aerospike/aerospike-client-c.git - branch = client-3753-path-expressions-integration + branch = stage diff --git a/aerospike-client-c b/aerospike-client-c index 3f15b94be5..e4f9bf235f 160000 --- a/aerospike-client-c +++ b/aerospike-client-c @@ -1 +1 @@ -Subproject commit 3f15b94be5aef435e5ae6681953638b680b91a6e +Subproject commit e4f9bf235f1b14e32f5589e4485a5d284f4504e6 From d266065e98d248df4b841f807595daf222ec431c Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:19:39 -0800 Subject: [PATCH 27/31] Fix compiler errors --- src/main/aerospike.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/main/aerospike.c b/src/main/aerospike.c index 2871839680..2ffb2a2980 100644 --- a/src/main/aerospike.c +++ b/src/main/aerospike.c @@ -561,16 +561,14 @@ static struct module_constant_name_to_value module_constants[] = { EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(EXP_LOOPVAR_VALUE), EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(EXP_LOOPVAR_INDEX), - EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_MATCHING_TREE), - EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_VALUES), + EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_TREE), EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD( - CDT_SELECT_MAP_KEY_VALUES), - EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_MAP_KEYS), + CDT_SELECT_LEAF_LIST_VALUE), + EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD( + CDT_SELECT_LEAF_MAP_VALUE), + EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_LEAF_MAP_KEY), EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_SELECT_NO_FAIL), - EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_MODIFY_NO_FAIL), - EXPOSE_AS_MACRO_WITHOUT_AS_PREFIX_AS_PUBLIC_FIELD(CDT_MODIFY_DEFAULT), - // For aerospike_helpers to use. Not to be exposed in public API // TODO: move all internal constants used by aerospike_helpers to this loc From 971db5378b24afee31819e0e2c1bc497aa29e678 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:26:28 -0800 Subject: [PATCH 28/31] Rename. not sure why these were reverted --- src/main/client/operate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/client/operate.c b/src/main/client/operate.c index 2910558c8a..c03ef68d8f 100644 --- a/src/main/client/operate.c +++ b/src/main/client/operate.c @@ -586,7 +586,7 @@ as_status add_op(AerospikeClient *self, as_error *err, if (operation == AS_OPERATOR_CDT_READ) { operation_succeeded = - as_operations_select_by_path(ops, bin, ctx_ref, flags); + as_operations_cdt_select(ops, bin, ctx_ref, flags); } else if (operation == AS_OPERATOR_CDT_MODIFY) { PyObject *py_expr = NULL; @@ -610,7 +610,7 @@ as_status add_op(AerospikeClient *self, as_error *err, } operation_succeeded = - as_operations_modify_by_path(ops, bin, ctx_ref, mod_exp, flags); + as_operations_cdt_apply(ops, bin, ctx_ref, mod_exp, flags); } break; From ea2f3d0c71153efe6f4c7fbe8c9683449b6bfd75 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:31:27 -0800 Subject: [PATCH 29/31] fix --- src/main/conversions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/conversions.c b/src/main/conversions.c index 912c0d0a13..3067b8fb36 100644 --- a/src/main/conversions.c +++ b/src/main/conversions.c @@ -2525,7 +2525,7 @@ as_status get_cdt_ctx(AerospikeClient *self, as_error *err, as_cdt_ctx *cdt_ctx, } else if (item_type == AS_CDT_CTX_EXP) { if (Py_IsNone(py_extra_args)) { - as_cdt_ctx_add_all_children(cdt_ctx); + as_cdt_ctx_add_all(cdt_ctx); } else { PyObject *py_expr = NULL; @@ -2545,7 +2545,7 @@ as_status get_cdt_ctx(AerospikeClient *self, as_error *err, as_cdt_ctx *cdt_ctx, } // This C client call memcpy's the expr's contents - as_cdt_ctx_add_all_children_with_filter(cdt_ctx, expr); + as_cdt_ctx_add_exp(cdt_ctx, expr); as_exp_destroy(expr); } } From f1b95f9fa1cfa23b354f1134c53ed87e7255f431 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:41:43 -0800 Subject: [PATCH 30/31] fix --- src/main/convert_expressions.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/convert_expressions.c b/src/main/convert_expressions.c index c077443b53..bf1a06354d 100644 --- a/src/main/convert_expressions.c +++ b/src/main/convert_expressions.c @@ -206,10 +206,9 @@ static as_status get_expr_size(int *size_to_alloc, int *intermediate_exprs_size, { static const int EXPR_SIZES[] = { - [_AS_EXP_CODE_CALL_SELECT] = - EXP_SZ(as_exp_select_by_path(NULL, 0, 0, NIL)), + [_AS_EXP_CODE_CALL_SELECT] = EXP_SZ(as_exp_cdt_select(NULL, 0, 0, NIL)), [_AS_EXP_CODE_CALL_APPLY] = - EXP_SZ(as_exp_modify_by_path(NULL, 0, NULL, 0, NIL)), + EXP_SZ(as_exp_cdt_apply(NULL, 0, NULL, 0, NIL)), [BIN] = EXP_SZ(as_exp_bin_int(0)), [_AS_EXP_CODE_AS_VAL] = EXP_SZ(as_exp_val(NULL)), [_AS_EXP_LOOPVAR_FLOAT] = EXP_SZ(as_exp_loopvar_float(0)), From ba22f162d7d8226a10b1e41a31a9157ed8b5d865 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 9 Dec 2025 13:45:17 -0800 Subject: [PATCH 31/31] fix --- src/main/convert_expressions.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/convert_expressions.c b/src/main/convert_expressions.c index bf1a06354d..2a0414b3a1 100644 --- a/src/main/convert_expressions.c +++ b/src/main/convert_expressions.c @@ -1674,12 +1674,12 @@ add_expr_macros(AerospikeClient *self, as_static_pool *static_pool, return err->code; } - APPEND_ARRAY(1, as_exp_modify_by_path(temp_expr->ctx, lval1, - mod_exp, lval2, NIL)); + APPEND_ARRAY(1, as_exp_cdt_apply(temp_expr->ctx, lval1, mod_exp, + lval2, NIL)); } else { - APPEND_ARRAY(1, as_exp_select_by_path(temp_expr->ctx, lval1, - lval2, NIL)); + APPEND_ARRAY( + 1, as_exp_cdt_select(temp_expr->ctx, lval1, lval2, NIL)); } break; default: